using System; using SqlSugar; namespace Hh.Mes.POJO.WebEntity { [SugarTable("base_work_center")] public partial class base_work_center { /// <summary> /// 主键 /// </summary> [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public int id { get; set; } [SugarColumn(IsNullable = true)] public Guid key { get; set; } /// <summary> /// 工作中心编码 /// </summary> [SugarColumn(Length = 50, IsNullable = true)] public string workCenterCode { get; set; } /// <summary> /// 工作中心名称 /// </summary> [SugarColumn(Length = 50, IsNullable = true)] public string workCenterName { get; set; } /// <summary> /// 建立时间 /// </summary> public DateTime? createTime { get; set; } /// <summary> /// 建立者 /// </summary> [SugarColumn(Length = 50, IsNullable = true)] public string createBy { get; set; } /// <summary> /// 更新时间 /// </summary> public DateTime? updateTime { get; set; } /// <summary> /// 更新者 /// </summary> [SugarColumn(Length = 50, IsNullable = true)] public string updateBy { get; set; } /// <summary> /// 外部编码 /// </summary> [SugarColumn(Length = 50, IsNullable = true)] public string otherCode { get; set; } /// <summary> /// /// </summary> public int isDelete { get; set; } } }