| | |
| | | using System.Collections.Generic; |
| | | using System.ComponentModel; |
| | | |
| | | namespace Tiger.Model |
| | | { |
| | |
| | | public int total { get; set; } |
| | | } |
| | | |
| | | public class ShortMessage |
| | | { |
| | | public string Content { get; set; } |
| | | public Types Type { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 信息类型 |
| | | /// </summary> |
| | | public enum Types |
| | | { |
| | | /// <summary> |
| | | /// 默认信息 |
| | | /// </summary> |
| | | [Description("默认信息")] |
| | | Normal, |
| | | /// <summary> |
| | | /// 成功信息 |
| | | /// </summary> |
| | | [Description("成功信息")] |
| | | Success, |
| | | /// <summary> |
| | | /// 警告信息 |
| | | /// </summary> |
| | | [Description("警告信息")] |
| | | Warning, |
| | | /// <summary> |
| | | /// 错误信息 |
| | | /// </summary> |
| | | [Description("错误信息")] |
| | | Error, |
| | | /// <summary> |
| | | /// 失败信息 |
| | | /// </summary> |
| | | [Description("失败信息")] |
| | | Failed, |
| | | /// <summary> |
| | | /// 异常信息 |
| | | /// </summary> |
| | | [Description("异常信息")] |
| | | Exception, |
| | | } |
| | | } |
| | | } |
| | |
| | | [DisplayName("加工段")] |
| | | public string SEGMENT { get; set; } |
| | | /// <summary> |
| | | /// 重量 |
| | | /// </summary> |
| | | [DisplayName("重量")] |
| | | public double WEIGHT { get; set; } |
| | | /// <summary> |
| | | /// 重量单位 |
| | | /// </summary> |
| | | [DisplayName("重量单位")] |
| | | public string WEIGHT_UNIT { get; set; } |
| | | /// <summary> |
| | | /// 备注 |
| | | /// </summary> |
| | | [DisplayName("备注")] |
| | |
| | | /// </summary> |
| | | public bool IsFinished { get; set; } = false; |
| | | /// <summary> |
| | | /// 短消息 |
| | | /// </summary> |
| | | public ShortMessage ShortMsg { get; set; } |
| | | /// <summary> |
| | | /// 当前操作的工单对象 |
| | | /// </summary> |
| | | public BIZ_MES_WO CurWO { get; set; } |
| | |
| | | /// </summary> |
| | | public string PRINT_USER { get; set; } |
| | | /// <summary> |
| | | /// 重量 |
| | | /// </summary> |
| | | [DisplayName("重量")] |
| | | public double WEIGHT { get; set; } |
| | | /// <summary> |
| | | /// 重量单位 |
| | | /// </summary> |
| | | [DisplayName("重量单位")] |
| | | public string WEIGHT_UNIT { get; set; } |
| | | /// <summary> |
| | | /// 备注 |
| | | /// </summary> |
| | | public string REMARK { get; set; } |