namespace DOAN.Model.BZFM { /// /// 物料分类表 /// [SugarTable("mm_material_category")] public class MmMaterialCategory { /// /// 主键ID /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public int Id { get; set; } /// /// 分类编码 /// [SugarColumn(ColumnName = "category_code")] public string CategoryCode { get; set; } /// /// 分类名称 /// [SugarColumn(ColumnName = "category_name")] public string CategoryName { get; set; } /// /// 父级分类编码 /// [SugarColumn(ColumnName = "parent_code")] public string ParentCode { get; set; } /// /// 层级 /// [SugarColumn(ColumnName = "level_no")] public int? LevelNo { get; set; } /// /// 描述 /// public string Description { get; set; } /// /// 状态(0/1) /// public string Status { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnName = "created_time")] public DateTime? CreatedTime { get; set; } /// /// 更新时间 /// [SugarColumn(ColumnName = "updated_time")] public DateTime? UpdatedTime { get; set; } } }