ProducEntityZyM.cs 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Core.StlMes.Client.PlnSaleOrd.炉计划.Entity
  6. {
  7. public class ProducEntityZyM
  8. {
  9. /// <summary>
  10. /// 虚拟炉计划ID
  11. /// </summary>
  12. private string heatPlanNo;
  13. public string HeatPlanNo
  14. {
  15. get { return heatPlanNo; }
  16. set { heatPlanNo = value; }
  17. }
  18. /// <summary>
  19. /// 实体类JSON
  20. /// </summary>
  21. private string jsonStr;
  22. public string JsonStr
  23. {
  24. get { return jsonStr; }
  25. set { jsonStr = value; }
  26. }
  27. /// <summary>
  28. ///排产重量
  29. /// </summary>
  30. private string planWgt;
  31. public string PlanWgt
  32. {
  33. get { return planWgt; }
  34. set { planWgt = value; }
  35. }
  36. /// <summary>
  37. /// 排产支数
  38. /// </summary>
  39. private string planNum;
  40. public string PlanNum
  41. {
  42. get { return planNum; }
  43. set { planNum = value; }
  44. }
  45. /// <summary>
  46. /// 执行状态
  47. /// </summary>
  48. private string exeStatus;
  49. public string ExeStatus
  50. {
  51. get { return exeStatus; }
  52. set { exeStatus = value; }
  53. }
  54. private string gxProSeq;
  55. /// <summary>
  56. /// 生产顺序
  57. /// </summary>
  58. public string GxProSeq
  59. {
  60. get { return gxProSeq; }
  61. set { gxProSeq = value; }
  62. }
  63. /// <summary>
  64. /// 生产年月
  65. /// </summary>
  66. private string proMonth = "";
  67. public string ProMonth
  68. {
  69. get { return proMonth; }
  70. set { proMonth = value; }
  71. }
  72. /// <summary>
  73. /// 合同号
  74. /// </summary>
  75. private string orderNo;
  76. /// <summary>
  77. /// 合同号
  78. /// </summary>
  79. public string OrderNo
  80. {
  81. get { return orderNo; }
  82. set { orderNo = value; }
  83. }
  84. private string castingtype;
  85. /// <summary>
  86. /// 铸造类型(连铸、模铸)
  87. /// </summary>
  88. public string Castingtype
  89. {
  90. get { return castingtype; }
  91. set { castingtype = value; }
  92. }
  93. private string plineCode;// 产线代码
  94. public string PlineCode
  95. {
  96. get { return plineCode; }
  97. set { plineCode = value; }
  98. }
  99. private string plineName;// 产线描述
  100. public string PlineName
  101. {
  102. get { return plineName; }
  103. set { plineName = value; }
  104. }
  105. private string zyBatchId = "";
  106. public string ZyBatchId
  107. {
  108. get { return zyBatchId; }
  109. set { zyBatchId = value; }
  110. }
  111. }
  112. }