using NXWMS.Client.Model.CoreModels; using System; using System.Collections.Generic; using System.Linq; using System.Runtime.Serialization; using System.Text; namespace NXWMS.Client.Model.AppModels.Condition.Base { /// /// 库位条件 /// public class BinCondition : OperationInfo { /// /// id /// public int? Id { get; set; } /// /// ids /// public string Ids { get; set; } /// /// /// public bool IsUsed { get; set; } /// /// 库位编码 /// public string BinCode { get; set; } /// /// 库位名称 /// public string BinName { get; set; } /// /// 库位类型 /// public string BinType { get; set; } /// /// 区域编码 /// public string AreaCode { get; set; } /// /// 仓库编码 /// public string WarehouseCode { get; set; } /// /// 库区编码 /// public string RegionCode { get; set; } /// /// 货架排编码 /// public string ShelfCode { get; set; } /// /// 库位排 /// public int? BinRow { get; set; } /// /// 库位列 /// public int? BinColumn { get; set; } /// /// 库位层 /// public int? BinLayer { get; set; } /// /// 长 /// public decimal? Length { get; set; } /// /// 宽 /// public decimal? Wide { get; set; } /// /// 高 /// public decimal? Height { get; set; } /// /// 上架顺序 /// public int? PutShelfOrder { get; set; } /// /// 下架顺序 /// public int? DownShelfOrder { get; set; } /// /// 体积限制 /// public decimal? VolumnLimit { get; set; } /// /// 重量限制 /// public decimal? WeightLimit { get; set; } /// /// 数量限制 /// public decimal? NumberLimit { get; set; } /// /// 托盘限制 /// public decimal? TrarLimit { get; set; } /// /// 允许混放产品 /// public bool IsBlendProduct { get; set; } /// /// 允许混放批次 /// public bool IsBlendBatch { get; set; } /// /// 描述 /// public string Describe { get; set; } } }