using NX_ModelClassLibrary.CustomEnum; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace NX_ModelClassLibrary.BaseModel { public class BasBinMd { public int BinId {get;set; } public string Newid { get; set; } public string BinCode { get; set; } public string BinName { get; set; } public BasBinTypeEnum BinType { get; set; } public string AreaCode { get; set; } public string AreaName { get; set; } public string WareHouseCode { get; set; } public string WareHouseName { get; set; } public string RegionCode { get; set; } public string RegionName { get; set; } public string ShelfCode { get; set; } public string ShelfName { get; set; } public int BinRow { get; set; } public int BinColumn { get; set; } public int BinLayer { get; set; } public string EXTENSION_GROUP { get; set; } public int EXTENSION_IDX { get; set; } public decimal Length { get; set; } public decimal Width { get; set; } public decimal Height { get; set; } public int PutShelfOrder { get; set; } public int DownShelfOrder { get; set; } public decimal VolumeLimit { get; set; } public decimal WeightLimit { get; set; } public decimal NumberLimit { get; set; } public decimal TrayLimit { get; set; } public string BlendProdouctFlag { get; set; } public string BlendBatchFlag { get; set; } public string Describe { get; set; } public UsedFlagEnum UsedFlag { get; set; } public DelFlagEnum DelFlag { get; set; } public int CreateBy { get; set; } public string CreateCode { get; set; } public string CreateName { get; set; } public DateTime CreateTime { get; set; } public int UpdateBy { get; set; } public string UpdateCode { get; set; } public string UpdateName { get; set; } public DateTime UpdateTime { get; set; } public int DataVersion { get; set; } public string Remarks1 { get; set; } public string Remarks2 { get; set; } public string Remarks3 { get; set; } public string Remarks4 { get; set; } public string Remarks5 { get; set; } } }