using SqlSugar; namespace Gs.Entity.BaseInfo; /// /// [SugarTable("MES_DEPOT_SECTIONS")] public class MesDepotSections { /// /// 默认值: (newid()) /// [SugarColumn(ColumnName = "guid", IsPrimaryKey = true)] public Guid Guid { get; set; } /// /// 所属仓库ID /// [SugarColumn(ColumnName = "depot_guid")] public string DepotGuid { get; set; } /// /// ID(SEQ_INV_ID)(ERPID) /// [SugarColumn(ColumnName = "depot_section_id")] public int DepotSectionId { get; set; } /// /// 货位编码 /// [SugarColumn(ColumnName = "depot_section_code")] public string DepotSectionCode { get; set; } /// /// 货位名称 /// [SugarColumn(ColumnName = "depot_section_name")] public string DepotSectionName { get; set; } /// /// 参与齐套校验(0:否,1:是) /// [SugarColumn(ColumnName = "completeness_flag")] public bool? CompletenessFlag { get; set; } /// /// 备注 /// [SugarColumn(ColumnName = "description")] public string Description { get; set; } /// /// 创建人 /// [SugarColumn(ColumnName = "create_by")] public string CreateBy { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnName = "create_date")] public DateTime? CreateDate { get; set; } /// /// 最后更新人 /// [SugarColumn(ColumnName = "lastupdate_by")] public string LastupdateBy { get; set; } /// /// 最后更新时间 /// [SugarColumn(ColumnName = "lastupdate_date")] public DateTime? LastupdateDate { get; set; } /// /// [SugarColumn(ColumnName = "company")] public string Company { get; set; } /// /// [SugarColumn(ColumnName = "factory")] public string Factory { get; set; } /// /// 卡板数 /// [SugarColumn(ColumnName = "kb_qty")] public int? KbQty { get; set; } /// /// 仓位组ID /// [SugarColumn(ColumnName = "zuid")] public int? Zuid { get; set; } /// /// 仓位全名 /// [SugarColumn(ColumnName = "depot_section_namet")] public string DepotSectionNamet { get; set; } /// /// [SugarColumn(ColumnName = "erpid")] public int? Erpid { get; set; } }