PortVrpBatchSampleResultCtrlEntity.cs 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. using Core.StlMes.Client.Judge.Models;
  2. using Newtonsoft.Json;
  3. using System.ComponentModel;
  4. namespace Core.StlMes.Client.Judge.ViewModels
  5. {
  6. public class PortVrpBatchSampleResultCtrlEntity : PortVrpBatchSampleResultEntity
  7. {
  8. private string plineName = "";
  9. /// <summary>
  10. /// 产线
  11. /// </summary>
  12. [Description("产线")]
  13. [JsonProperty("plineName")]
  14. public new string PlineName
  15. {
  16. get { return plineName; }
  17. set { plineName = value; }
  18. }
  19. private string proPlanId = "";
  20. /// <summary>
  21. /// 生产订单号
  22. /// </summary>
  23. [Description("生产订单号")]
  24. [JsonProperty("proPlanId")]
  25. public string ProPlanId
  26. {
  27. get { return proPlanId; }
  28. set { proPlanId = value; }
  29. }
  30. private string chemResultDesc = "";
  31. /// <summary>
  32. /// 成分判定结果
  33. /// </summary>
  34. [Description("判定结果")]
  35. [JsonProperty("chemResultDesc")]
  36. public string ChemResultDesc
  37. {
  38. get { return chemResultDesc; }
  39. set { chemResultDesc = value; }
  40. }
  41. private string phyResultDesc = "";
  42. /// <summary>
  43. /// 理化判定结果
  44. /// </summary>
  45. [Description("判定结果")]
  46. [JsonProperty("phyResultDesc")]
  47. public string PhyResultDesc
  48. {
  49. get { return phyResultDesc; }
  50. set { phyResultDesc = value; }
  51. }
  52. private string outdiameter = "";
  53. /// <summary>
  54. /// 外径
  55. /// </summary>
  56. [Description("外径")]
  57. [JsonProperty("outdiameter")]
  58. public string Outdiameter
  59. {
  60. get { return outdiameter; }
  61. set { outdiameter = value; }
  62. }
  63. private string wallthick = "";
  64. /// <summary>
  65. /// 壁厚
  66. /// </summary>
  67. [Description("壁厚")]
  68. [JsonProperty("wallthick")]
  69. public string Wallthick
  70. {
  71. get { return wallthick; }
  72. set { wallthick = value; }
  73. }
  74. private string steelName = "";
  75. /// <summary>
  76. /// 钢级
  77. /// </summary>
  78. [Description("钢级")]
  79. [JsonProperty("steelName")]
  80. public string SteelName
  81. {
  82. get { return steelName; }
  83. set { steelName = value; }
  84. }
  85. private string chemJudgeState = "";
  86. /// <summary>
  87. /// 判定状态
  88. /// </summary>
  89. [Description("判定状态")]
  90. [JsonProperty("chemJudgeState")]
  91. public string ChemJudgeState
  92. {
  93. get { return chemJudgeState; }
  94. set { chemJudgeState = value; }
  95. }
  96. private string phyJudgeState = "";
  97. /// <summary>
  98. /// 判定状态
  99. /// </summary>
  100. [Description("判定状态")]
  101. [JsonProperty("phyJudgeState")]
  102. public string PhyJudgeState
  103. {
  104. get { return phyJudgeState; }
  105. set { phyJudgeState = value; }
  106. }
  107. }
  108. }