| | |
| | | [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作废) |
| | |
| | | /// </summary> |
| | | [DisplayName("来源单号,多个用“,”分隔,跟编码一一对应")] |
| | | public string SOURCE_ORDER { get; set; } |
| | | /// <summary> |
| | | /// 备注 |
| | | /// </summary> |
| | | [DisplayName("备注")] |
| | | /// <summary> |
| | | /// 工厂编码 |
| | | /// </summary> |
| | | [DisplayName("工厂编码")] |
| | | public string FTY_CODE { get; set; } |
| | | /// <summary> |
| | | /// 车间编码 |
| | | /// </summary> |
| | | [DisplayName("车间编码")] |
| | | public string WS_CODE { get; set; } |
| | | /// <summary> |
| | | /// 产线编码 |
| | | /// </summary> |
| | | [DisplayName("产线编码")] |
| | | public string LINE_CODE { get; set; } |
| | | /// <summary> |
| | | /// 岗位编码 |
| | | /// </summary> |
| | | [DisplayName("岗位编码")] |
| | | public string POST_CODE { get; set; } |
| | | /// <summary> |
| | | /// 工序编码 |
| | | /// </summary> |
| | | [DisplayName("工序编码")] |
| | | public string OPER_CODE { get; set; } |
| | | /// <summary> |
| | | /// 加工段 |
| | | /// </summary> |
| | | [DisplayName("加工段")] |
| | | public string SEGMENT { get; set; } |
| | | /// <summary> |
| | | /// 备注 |
| | | /// </summary> |
| | | [DisplayName("备注")] |
| | | public string REMARK { get; set; } |
| | | #endregion |
| | | |
| | |
| | | */ |
| | | |
| | | /// <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作废) |