FrmMchOfficeResultDentity.cs 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  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 MchOfficeResultDentity
  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. }
  91. }