| | |
| | | [DisplayName("备料任务号")] |
| | | public string ORDER_NO { get; set; } |
| | | /// <summary> |
| | | /// 业务类型(0Others其他备料|1Requisition领料单备料|2WorkOrder工单备料|3Outsourcing委外备料) |
| | | /// 业务类型(0Others其他备料|1Requisition领料单备料|2WorkOrder工单备料|3Outsourcing委外备料|4Transfer调拨备料) |
| | | /// </summary> |
| | | [DisplayName("业务类型(0Others其他备料|1Requisition领料单备料|2WorkOrder工单备料|3Outsourcing委外备料)")] |
| | | [DisplayName("业务类型(0Others其他备料|1Requisition领料单备料|2WorkOrder工单备料|3Outsourcing委外备料|4Transfer调拨备料)")] |
| | | public int BIZ_TYPE { get; set; } |
| | | /// <summary> |
| | | /// 状态(0Init初始化|1Called已叫料|2WaitPick待捡料|3Picking捡料中|4Picked已捡完|5Sended已发料|6Close已关闭|7Cancel作废) |
| | |
| | | [SugarColumn(IsIgnore = true)] |
| | | public string FieldName { get; set; } |
| | | */ |
| | | [SugarColumn(IsIgnore = true)] |
| | | public BIZ_WMS_PREP_BTH CurBatch => Batchs?.OrderBy(q => q.CALL_TIME).FirstOrDefault(q => q.STATUS < STATUSs.Sended.GetValue()); |
| | | #endregion |
| | | |
| | | #region 外键属性 |
| | |
| | | */ |
| | | |
| | | /// <summary> |
| | | /// 枚举:业务类型(0Others其他备料|1Requisition领料单备料|2WorkOrder工单备料|3Outsourcing委外备料) |
| | | /// 枚举:业务类型(0Others其他备料|1Requisition领料单备料|2WorkOrder工单备料|3Outsourcing委外备料|4Transfer调拨备料) |
| | | /// </summary> |
| | | public enum BIZ_TYPEs |
| | | { |
| | |
| | | Requisition = 1, |
| | | [Description("工单备料")] |
| | | WorkOrder = 2, |
| | | [Description("委外备料")] |
| | | Outsourcing = 3, |
| | | } |
| | | [Description("委外备料")] |
| | | Outsourcing = 3, |
| | | [Description("调拨备料")] |
| | | Transfer = 4, |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 枚举:状态(0Init初始化|1Called已叫料|2WaitPick待捡料|3Picking捡料中|4Picked已捡完|5Sended已发料|6Close已关闭|7Cancel作废) |