PlnZyRclMWithGroupPort.cs 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  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.YdmBcPipeManage.Entity
  8. {
  9. public class PlnZyRclMWithGroupPort:PlnZyRclMEntity
  10. {
  11. /// <summary>
  12. /// 材料支数(实际)
  13. /// </summary>
  14. private decimal? actCount = null;
  15. /// <summary>
  16. /// 材料实重(实际)
  17. /// </summary>
  18. private decimal? actWeight = null;
  19. /// <summary>
  20. /// 材料支数(实际)
  21. /// </summary>
  22. private decimal? offlineCount = null;
  23. /// <summary>
  24. /// 材料实重(实际)
  25. /// </summary>
  26. private decimal? offlineWeight = null;
  27. /// <summary>
  28. /// 材料支数(实际)
  29. /// </summary>
  30. private decimal? editCount = null;
  31. /// <summary>
  32. /// 实际热处理取样分批(性能批号)
  33. /// </summary>
  34. private string phyBatchNo = "";
  35. /// <summary>
  36. /// 热处理次数
  37. /// </summary>
  38. private decimal? processSeq = null;
  39. /// <summary>
  40. /// 材料支数(实际)
  41. /// </summary>
  42. [Description("合格支数")]
  43. [JsonProperty("actCount")]
  44. public decimal? ActCount
  45. {
  46. get { return actCount; }
  47. set { actCount = value; }
  48. }
  49. [Description("编辑支数")]
  50. [JsonProperty("actCount")]
  51. public decimal? EditCount
  52. {
  53. get { return editCount; }
  54. set { editCount = value; }
  55. }
  56. /// <summary>
  57. /// 材料实重(实际)
  58. /// </summary>
  59. [Description("合格重量")]
  60. [JsonProperty("actWeight")]
  61. public decimal? ActWeight
  62. {
  63. get { return actWeight; }
  64. set { actWeight = value; }
  65. }
  66. [Description("已离线支数")]
  67. [JsonProperty("offlineCount")]
  68. public decimal? OfflineCount
  69. {
  70. get { return offlineCount; }
  71. set { offlineCount = value; }
  72. }
  73. /// <summary>
  74. /// 材料实重(实际)
  75. /// </summary>
  76. [Description("已离线重量")]
  77. [JsonProperty("offlineWeight")]
  78. public decimal? OfflineWeight
  79. {
  80. get { return offlineWeight; }
  81. set { offlineWeight = value; }
  82. }
  83. /// <summary>
  84. /// 实际热处理取样分批(性能批号)
  85. /// </summary>
  86. [Description("批号")]
  87. [JsonProperty("phyBatchNo")]
  88. public string PhyBatchNo
  89. {
  90. get { return phyBatchNo; }
  91. set { phyBatchNo = value; }
  92. }
  93. /// <summary>
  94. /// 热处理次数
  95. /// </summary>
  96. [Description("热处理次数")]
  97. [JsonProperty("processSeq")]
  98. public decimal? ProcessSeq
  99. {
  100. get { return processSeq; }
  101. set { processSeq = value; }
  102. }
  103. }
  104. }