FrmRclInfoEntity.cs 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Linq;
  5. using System.Text;
  6. namespace com.steering.pss.plnsaleord.processOrder.entity
  7. {
  8. class FrmRclInfoEntity
  9. {
  10. private string planTimeB;
  11. [Description("计划开始时间")]
  12. public string PlanTimeB
  13. {
  14. get { return planTimeB; }
  15. set { planTimeB = value; }
  16. }
  17. private string planTimeE;
  18. [Description("计划结束时间")]
  19. public string PlanTimeE
  20. {
  21. get { return planTimeE; }
  22. set { planTimeE = value; }
  23. }
  24. private string repairType;
  25. [Description("类型")]
  26. public string RepairType
  27. {
  28. get { return repairType; }
  29. set { repairType = value; }
  30. }
  31. private string groupId;
  32. [Description("计划分组代码")]
  33. public string GroupId
  34. {
  35. get { return groupId; }
  36. set { groupId = value; }
  37. }
  38. private string groupPlan;
  39. [Description("计划分组")]
  40. public string GroupPlan
  41. {
  42. get { return groupPlan; }
  43. set { groupPlan = value; }
  44. }
  45. private string plineCode;
  46. [Description("产线代码")]
  47. public string PlineCode
  48. {
  49. get { return plineCode; }
  50. set { plineCode = value; }
  51. }
  52. private string plineName;
  53. [Description("热处理产线")]
  54. public string PlineName
  55. {
  56. get { return plineName; }
  57. set { plineName = value; }
  58. }
  59. private double? remainDay1;
  60. [Description("剩余天数")]
  61. public double? RemainDay1
  62. {
  63. get { return remainDay1; }
  64. set { remainDay1 = value; }
  65. }
  66. private double? wgt1;
  67. [Description("排产总量(吨)")]
  68. public double? Wgt1
  69. {
  70. get { return wgt1; }
  71. set { wgt1 = value; }
  72. }
  73. private double? wgt2;
  74. [Description("排产总量(吨)")]
  75. public double? Wgt2
  76. {
  77. get { return wgt2; }
  78. set { wgt2 = value; }
  79. }
  80. private double? wgt3;
  81. [Description("排产总量(吨)")]
  82. public double? Wgt3
  83. {
  84. get { return wgt3; }
  85. set { wgt3 = value; }
  86. }
  87. private double? remainDay2;
  88. [Description("剩余天数")]
  89. public double? RemainDay2
  90. {
  91. get { return remainDay2; }
  92. set { remainDay2 = value; }
  93. }
  94. private double? remainDay3;
  95. [Description("剩余天数")]
  96. public double? RemainDay3
  97. {
  98. get { return remainDay3; }
  99. set { remainDay3 = value; }
  100. }
  101. private double? planWgt1;
  102. [Description("计划余量(吨)")]
  103. public double? PlanWgt1
  104. {
  105. get { return planWgt1; }
  106. set { planWgt1 = value; }
  107. }
  108. private double? planWgt2;
  109. [Description("计划余量(吨)")]
  110. public double? PlanWgt2
  111. {
  112. get { return planWgt2; }
  113. set { planWgt2 = value; }
  114. }
  115. private double? planWgt3;
  116. [Description("计划余量(吨)")]
  117. public double? PlanWgt3
  118. {
  119. get { return planWgt3; }
  120. set { planWgt3 = value; }
  121. }
  122. }
  123. }