| | |
| | | /// UPN编码 |
| | | /// </summary> |
| | | public string UPN { get; set; } |
| | | /// <summary> |
| | | /// 产线编码 |
| | | /// </summary> |
| | | public string LINE_CODE { get; set; } |
| | | /// <summary> |
| | | /// CPN编码 |
| | | /// </summary> |
| | | public string CPN { get; set; } |
| | | /// <summary> |
| | | /// 产线编码 |
| | | /// </summary> |
| | | public string LINE_CODE { get; set; } |
| | | /// <summary> |
| | | /// 钢网编码 |
| | | /// </summary> |
| | |
| | | #endregion |
| | | |
| | | #region 枚举变量 |
| | | /*例子 |
| | | public enum FieldNames |
| | | //例子 |
| | | public enum STATUSs |
| | | { |
| | | [Description("枚举描述0")] |
| | | Enum0, |
| | | [Description("枚举描述1")] |
| | | Enum1, |
| | | } |
| | | */ |
| | | [Description("登记")] |
| | | Register, |
| | | [Description("入库")] |
| | | InStore, |
| | | [Description("回温")] |
| | | Rewarm, |
| | | [Description("领用")] |
| | | Sended, |
| | | [Description("上线")] |
| | | Online, |
| | | [Description("搅拌")] |
| | | Stir, |
| | | [Description("下线")] |
| | | Offline, |
| | | [Description("用毕")] |
| | | UseUp, |
| | | } |
| | | |
| | | #endregion |
| | | |
| | | #region 公共方法 |