| | |
| | | [DisplayName("客户编码(留空则不区分客户)")] |
| | | public string CUST_CODE { get; set; } |
| | | /// <summary> |
| | | /// 工序行为ID |
| | | /// 工艺工序行为ID |
| | | /// </summary> |
| | | [DisplayName("工序行为ID")] |
| | | [DisplayName("工艺工序行为ID")] |
| | | public string ACT_ID { get; set; } |
| | | /// <summary> |
| | | /// 工艺路线ID |
| | |
| | | /// </summary> |
| | | [DisplayName("行为类型(0Normal默认行为|1Scan扫码验证|2Assy组装上料|3Test产品测试|4Audit产品抽检|5Print标签打印|5Package包装规则)")] |
| | | public int ACT_TYPE { get; set; } |
| | | /// <summary> |
| | | /// 行为定义编码 |
| | | /// </summary> |
| | | [DisplayName("行为定义编码")] |
| | | public string ACT_CODE { get; set; } |
| | | /// <summary> |
| | | /// 扫码验证:条码规则 |
| | | /// </summary> |
| | |
| | | [DisplayName("包装规则:包装规则编码")] |
| | | public string PKG_CODE { get; set; } |
| | | /// <summary> |
| | | /// 是否启用(Y/N) |
| | | /// </summary> |
| | | [DisplayName("是否启用(Y/N)")] |
| | | public string IS_ACTIVE { get; set; } |
| | | /// <summary> |
| | | /// 设置值1 |
| | | /// </summary> |
| | | [DisplayName("设置值1")] |
| | |
| | | [DisplayName("设置值5")] |
| | | public string OPTION_5 { get; set; } |
| | | /// <summary> |
| | | /// 是否设置才能下发生产(Y/N) |
| | | /// 是否设置完成(Y/N) |
| | | /// </summary> |
| | | [DisplayName("是否设置才能下发生产(Y/N)")] |
| | | public string NEED_SETUP { get; set; } |
| | | [DisplayName("是否设置完成(Y/N)")] |
| | | public string SETUP_FINISH { get; set; } |
| | | /// <summary> |
| | | /// 备注 |
| | | /// </summary> |
| | |
| | | Enum1, |
| | | } |
| | | */ |
| | | |
| | | /// <summary> |
| | | /// 枚举:行为类型(0Normal默认行为|1Scan扫码验证|2Assy组装上料|3Test产品测试|4Audit产品抽检|5Print标签打印|5Package包装规则) |
| | | /// </summary> |
| | | public enum ACT_TYPEs |
| | | { |
| | | [Description("默认行为")] |
| | | Normal = 0, |
| | | [Description("扫码验证")] |
| | | Scan = 1, |
| | | [Description("组装上料")] |
| | | Assy = 2, |
| | | [Description("产品测试")] |
| | | Test = 3, |
| | | [Description("产品抽检")] |
| | | Audit = 4, |
| | | [Description("标签打印")] |
| | | Print = 5, |
| | | [Description("包装规则")] |
| | | Package = 5, |
| | | } |
| | | #endregion |
| | | |
| | | #region 公共方法 |