using SqlSugar; namespace Gs.BaseInfo.Models; /// /// [SugarTable("MES_WORKSHOP")] public class MesWorkshop { /// /// 主键 /// [SugarColumn(ColumnName = "guid", IsPrimaryKey = true)] public Guid? Guid { get; set; } /// /// 编号 /// [SugarColumn(ColumnName = "workshop_no")] public string WorkshopNo { get; set; } /// /// 工厂编号 /// [SugarColumn(ColumnName = "factory")] public string Factory { get; set; } /// /// 车间名称 /// [SugarColumn(ColumnName = "name")] public string Name { get; set; } /// /// 备注 /// [SugarColumn(ColumnName = "remark")] public string Remark { get; set; } /// /// 建立者 /// [SugarColumn(ColumnName = "create_by", IsOnlyIgnoreUpdate = true)] public string CreateBy { get; set; } /// /// 对立时间 /// [SugarColumn(ColumnName = "create_date", IsOnlyIgnoreUpdate = true)] public DateTime? CreateDate { get; set; } /// /// 更新时间 /// [SugarColumn(ColumnName = "lastupdate_date")] public DateTime? LastupdateDate { get; set; } /// /// 更新者 /// [SugarColumn(ColumnName = "lastupdate_by")] public string LastupdateBy { get; set; } /// /// 状态 /// [SugarColumn(ColumnName = "is_status")] public bool? IsStatus { get; set; } /// /// [SugarColumn(ColumnName = "check_date")] public DateTime? CheckDate { get; set; } /// /// [SugarColumn(ColumnName = "check_by")] public string CheckBy { get; set; } /// /// [SugarColumn(ColumnName = "check_status")] public bool? CheckStatus { get; set; } /// /// [SugarColumn(ColumnName = "workid")] public int Workid { get; set; } /// /// 使用组织 /// [SugarColumn(ColumnName = "FSubsidiary")] public string FSubsidiary { get; set; } [SugarColumn(IsIgnore = true)] public List list { get; set; } }