namespace JSMachine.WMS.App.Dto { /// /// 原纸绑定机台信息 /// public class PaperBindInfoDto { /// /// 此条码入库重量 /// public int ReceiveQty { get; set; } /// /// 材质 /// public string Paper { get; set; } /// /// 供应商编号 /// public string SuppID { get; set; } /// /// 条码 /// public string Barcode { get; set; } /// /// 幅宽 /// public string PaperWidth { get; set; } /// /// 米数(米) /// public string StockMeter { get; set; } public string WorkingGroup { get; set; } /// /// 入库单号 /// public string ReceiveNote { get; set; } /// /// 规格型号说明 /// public string StockDescription { get; set; } /// /// 克重 /// public string GPerM2 { get; set; } /// /// 库区 /// public string Location { get; set; } /// /// 单价 /// public float UnitPrice { get; set; } /// /// 可用状态 /// X表示不可使用 /// NULL、空、V均表示可用 /// public string CanUse { get; set; } /// /// 物料号 /// public string StockItem { get; set; } /// /// 残卷标志 /// public string StockMark { get; set; } /// /// 物料号 /// public string StockType { get; set; } /// /// 该纸卷库存的唯一身份标记 /// public string ObjID { get; set; } /// /// /// public string GroupManagementDistributedFactoryID { get; set; } /// /// 重量(公斤) /// public string ActualQty { get; set; } /// /// 供应商简称 /// public string SuppShortName { get; set; } /// /// 制造商 /// public string Maker { get; set; } /// /// 库位 /// public string LocSub { get; set; } /// /// /// public int ReceiveDiameter { get; set; } /// /// 手动指定机台号 /// public int HandMachineNum { get; set; } /// /// 进纸状态(0:未进纸 1:已进纸) /// public int InPaperState { get; set; } /// /// 需要的纸质(未代纸情况下此值和实际纸质相等,代纸情况下则不等) /// public string WantedPaperCode { get; set; } /// /// 需要的幅宽(未代纸情况下此值和实际幅宽相等,代纸情况下则不等) /// public int WantedPaperWidth { get; set; } /// /// 代纸状态(0: 未代纸 1:已代纸) /// public int ReplacePaperState { get; set; } /// /// 需要的机台(未代纸情况下此值和实际机台相等,代纸情况下则不等) /// public int WantedMachineNum { get; set; } /// /// 纸质 /// public string PaperMassCode { get; set; } /// /// 幅宽 /// public int Web { get; set; } /// /// 机台 /// public int MachineNum { get; set; } } }