using System.ComponentModel.DataAnnotations.Schema; namespace YLErp.DBModels { /// /// 板块性质配置 /// [Table("underlying_block_config")] public class UnderlyingBlockConfig : DBModelWithOperator { /// /// 名称 /// public string Name { get; set; } /// /// 是否分组 /// public int Group { get; set; } } [NotMapped] public class UnderlyingBlockConfigDto : UnderlyingBlockConfig { } }