| | |
| | | [DisplayName("工单号")] |
| | | public string ORDER_NO { get; set; } |
| | | /// <summary> |
| | | /// 工单类型(0Normal正常|1Rework返工) |
| | | /// 工单类型(0Plan计划|1Standard标准|2Rework返工|3Restructuring在库改制|5委外Outsourcing|6RD研发|7Forecast预测|8Disassemble拆卸) |
| | | /// </summary> |
| | | [DisplayName("工单类型(0Normal正常|1Rework返工)")] |
| | | [DisplayName("工单类型(0Plan计划|1Standard标准|2Rework返工|3Restructuring在库改制|5Outsourcing委外|6RD研发|7Forecast预测|8Disassemble拆卸)")] |
| | | public string ORDER_TYPE { get; set; } |
| | | /// <summary> |
| | | /// 工单描述 |
| | |
| | | [Description("已关闭")] |
| | | Closed, |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 工单类型枚举 |
| | | /// </summary> |
| | | public enum ORDER_TYPEs { |
| | | [Description("计划")] |
| | | Plan=0, |
| | | [Description("标准")] |
| | | Standard=1, |
| | | [Description("返工")] |
| | | Rework=2, |
| | | [Description("在库改制")] |
| | | Restructuring=3, |
| | | [Description("委外")] |
| | | Outsourcing = 5, |
| | | [Description("研发")] |
| | | RD = 6, |
| | | [Description("预测")] |
| | | Forecast = 7, |
| | | [Description("拆卸")] |
| | | Disassemble = 8, |
| | | } |
| | | #endregion |
| | | |
| | | #region 公共方法 |