FrmMchOfflineResultDentity.cs 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace com.steering.mes.mcp.entity
  6. {
  7. public class MchOfflineResultDentity
  8. {
  9. /// <summary>
  10. /// 实绩编号RESULT_NO
  11. /// </summary>
  12. private string resultNo = "";
  13. public string ResultNo
  14. {
  15. get { return resultNo; }
  16. set { resultNo = value; }
  17. }
  18. /// <summary>
  19. /// 序号RESULT_SQE
  20. /// </summary>
  21. private string resultSqe = "";
  22. public string ResultSqe
  23. {
  24. get { return resultSqe; }
  25. set { resultSqe = value; }
  26. }
  27. /// <summary>
  28. /// 炉计划ID HEAT_PLAN_NO
  29. /// </summary>
  30. private string heatPlanNo = "";
  31. public string HeatPlanNo
  32. {
  33. get { return heatPlanNo; }
  34. set { heatPlanNo = value; }
  35. }
  36. /// <summary>
  37. /// 产线PLINE_CODE
  38. /// </summary>
  39. private string plineCode = "";
  40. public string PlineCode
  41. {
  42. get { return plineCode; }
  43. set { plineCode = value; }
  44. }
  45. /// <summary>
  46. /// 产线描述PLINE_NAME
  47. /// </summary>
  48. private string plineName = "";
  49. public string PlineName
  50. {
  51. get { return plineName; }
  52. set { plineName = value; }
  53. }
  54. /// <summary>
  55. /// 离线支数OFFLINE_NUM
  56. /// </summary>
  57. private string offlineNum = "";
  58. public string OfflineNum
  59. {
  60. get { return offlineNum; }
  61. set { offlineNum = value; }
  62. }
  63. /// <summary>
  64. /// 离线重量OFFLINE_WT
  65. /// </summary>
  66. private string offlineWt = "";
  67. public string OfflineWt
  68. {
  69. get { return offlineWt; }
  70. set { offlineWt = value; }
  71. }
  72. /// <summary>
  73. /// 物流去向代码GOWHERE_CODE
  74. /// </summary>
  75. private string gowhereCode = "";
  76. public string GowhereCode
  77. {
  78. get { return gowhereCode; }
  79. set { gowhereCode = value; }
  80. }
  81. /// <summary>
  82. /// 物流去向名称GOWHERE_NAME
  83. /// </summary>
  84. private string gowhereName = "";
  85. public string GowhereName
  86. {
  87. get { return gowhereName; }
  88. set { gowhereName = value; }
  89. }
  90. ///创建时间CREATE_TIME
  91. ///
  92. private string createTime = "";
  93. public string CreateTime
  94. {
  95. get { return createTime; }
  96. set { createTime = value; }
  97. }
  98. ///工序点代码STATION_CODE
  99. ///
  100. private string stationCode = "";
  101. public string StationCode
  102. {
  103. get { return stationCode; }
  104. set { stationCode = value; }
  105. }
  106. ///工序点描述STATION_DESC
  107. ///
  108. private string stationDesc = "";
  109. public string StationDesc
  110. {
  111. get { return stationDesc; }
  112. set { stationDesc = value; }
  113. }
  114. }
  115. }