namespace DOAN.Model.MES.base_ { /// /// 单位信息 /// [SugarTable("base_unit")] public class BaseUnit { /// /// 自增 /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public int Id { get; set; } /// /// 单位名称 /// [SugarColumn(ColumnName = "unit_name")] public string UnitName { get; set; } /// /// 单位代码 /// [SugarColumn(ColumnName = "unit_code")] public string UnitCode { get; set; } /// /// 备注 /// public string Remark { get; set; } /// /// 状态 /// public int? Status { get; set; } /// /// 创建人 /// [SugarColumn(ColumnName = "cREATED_BY")] public string CreatedBy { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnName = "cREATED_TIME")] public DateTime? CreatedTime { get; set; } /// /// 更新人 /// [SugarColumn(ColumnName = "uPDATED_BY")] public string UpdatedBy { get; set; } /// /// 更新时间 /// [SugarColumn(ColumnName = "uPDATED_TIME")] public DateTime? UpdatedTime { get; set; } } }