HttControlLogDetailEntityPlus.cs 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Linq;
  5. using System.Text;
  6. using Newtonsoft.Json;
  7. namespace Core.StlMes.Client.Mcp.Control.Entity
  8. {
  9. public class HttControlLogDetailEntityPlus: HttControlLogEntity
  10. {
  11. /// <summary>
  12. /// GUID主键
  13. /// </summary>
  14. private string controlId = "";
  15. /// <summary>
  16. /// 停机分类
  17. /// </summary>
  18. private string stopType = "";
  19. /// <summary>
  20. /// 停机原因
  21. /// </summary>
  22. private string stopReason = "";
  23. /// <summary>
  24. /// 停机小类
  25. /// </summary>
  26. private string stopSmall = "";
  27. /// <summary>
  28. /// 序号
  29. /// </summary>
  30. private decimal? controlSeq = null;
  31. /// <summary>
  32. /// GUID主键
  33. /// </summary>
  34. [Description("GUID主键")]
  35. [JsonProperty("controlId")]
  36. public string ControlId
  37. {
  38. get { return controlId; }
  39. set { controlId = value; }
  40. }
  41. /// <summary>
  42. /// 停机分类
  43. /// </summary>
  44. [Description("停机分类")]
  45. [JsonProperty("stopType")]
  46. public string StopType
  47. {
  48. get { return stopType; }
  49. set { stopType = value; }
  50. }
  51. /// <summary>
  52. /// 停机原因
  53. /// </summary>
  54. [Description("停机原因")]
  55. [JsonProperty("stopReason")]
  56. public string StopReason
  57. {
  58. get { return stopReason; }
  59. set { stopReason = value; }
  60. }
  61. /// <summary>
  62. /// 停机小类
  63. /// </summary>
  64. [Description("停机小类")]
  65. [JsonProperty("stopSmall")]
  66. public string StopSmall
  67. {
  68. get { return stopSmall; }
  69. set { stopSmall = value; }
  70. }
  71. /// <summary>
  72. /// 序号
  73. /// </summary>
  74. [Description("序号")]
  75. [JsonProperty("controlSeq")]
  76. public decimal? ControlSeq
  77. {
  78. get { return controlSeq; }
  79. set { controlSeq = value; }
  80. }
  81. /// <summary>
  82. /// 选择
  83. /// </summary>
  84. [Description("选择")]
  85. [JsonProperty("Chk")]
  86. public bool Chk { get; set; }
  87. /// <summary>
  88. /// 工序点代码
  89. /// </summary>
  90. private string stationCode = "";
  91. /// <summary>
  92. /// 工序点代码
  93. /// </summary>
  94. [Description("工序点 ")]
  95. [JsonProperty("stationCode")]
  96. public string StationCode
  97. {
  98. get { return stationCode; }
  99. set { stationCode = value; }
  100. }
  101. /// <summary>
  102. /// 工序点代码
  103. /// </summary>
  104. private string memo = "";
  105. /// <summary>
  106. /// 工序点代码
  107. /// </summary>
  108. [Description("备注 ")]
  109. [JsonProperty("MEMO")]
  110. public string Memo
  111. {
  112. get { return memo; }
  113. set { memo = value; }
  114. }
  115. }
  116. }