using System; namespace MES.Service.Modes { /// /// public class MesDepotSections { /// /// 默认值: (newid()) /// public Guid? Guid { get; set; } /// /// public Guid? DepotGuid { get; set; } /// /// ID(SEQ_INV_ID)(ERPID) /// public int DepotSectionId { get; set; } /// /// 货位编码 /// public string DepotSectionCode { get; set; } /// /// 货位名称 /// public string DepotSectionName { get; set; } /// /// 参与齐套校验(0:否,1:是) /// public bool? CompletenessFlag { get; set; } /// /// 备注 /// public string Description { get; set; } /// /// 创建人 /// public string CreateBy { get; set; } /// /// 创建时间 /// public DateTime? CreateDate { get; set; } /// /// 最后更新人 /// public string LastupdateBy { get; set; } /// /// 最后更新时间 /// public DateTime? LastupdateDate { get; set; } /// /// public string Company { get; set; } /// /// public string Factory { get; set; } /// /// 卡板数 /// public int? KbQty { get; set; } /// /// 仓位组ID /// public int? Zuid { get; set; } /// /// 仓位全名 /// public string DepotSectionNamet { get; set; } /// /// public int? Erpid { get; set; } } }