HttEntrustEntityPlus.cs 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Linq;
  5. using System.Text;
  6. using Core.Mes.Client.Comm.Attribute;
  7. namespace Core.StlMes.Client.Mcp.Treatment.Entity
  8. {
  9. public class HttEntrustEntityPlus : HttEntrustEntity
  10. {
  11. /// <summary>
  12. /// IF_MONITOR
  13. /// </summary>
  14. [Description("合同紧急度")]
  15. [Nullable(true)]
  16. [DataLength(20)]
  17. public string Priority { get; set; }
  18. /// <summary>
  19. /// IF_MONITOR
  20. /// </summary>
  21. [Description("紧急度备注")]
  22. [Nullable(true)]
  23. [DataLength(20)]
  24. public string PriorityMemo { get;set; }
  25. /// <summary>
  26. /// LENGTHDISC
  27. /// </summary>
  28. [Description("长度范围")]
  29. [Nullable(true)]
  30. [DataLength(20)]
  31. public string Lengthdisc { get; set; }
  32. /// <summary>
  33. /// IF_MONITOR
  34. /// </summary>
  35. [Description("判定炉号")]
  36. [Nullable(true)]
  37. [DataLength(20)]
  38. public string JudgeStoveNo2 { get; set; }
  39. }
  40. }