QcmLgJudgeCtrlEntity.cs 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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 QcmLgJudgeCtrlEntity : QcmLgJudgeEntity
  7. {
  8. private string plineName = "";
  9. /// <summary>
  10. /// 产线
  11. /// </summary>
  12. [Description("产线")]
  13. [JsonProperty("plineName")]
  14. public string PlineName
  15. {
  16. get { return plineName; }
  17. set { plineName = value; }
  18. }
  19. private string judgeresultChemDesc = "";
  20. /// <summary>
  21. /// 成分判定结果
  22. /// </summary>
  23. [Description("成分判定结果")]
  24. [JsonProperty("judgeresultChemDesc")]
  25. public string JudgeresultChemDesc
  26. {
  27. get { return judgeresultChemDesc; }
  28. set { judgeresultChemDesc = value; }
  29. }
  30. private string judgeresultPhyDesc = "";
  31. /// <summary>
  32. /// 理化判定结果
  33. /// </summary>
  34. [Description("理化判定结果")]
  35. [JsonProperty("judgeresultPhyDesc")]
  36. public string JudgeresultPhyDesc
  37. {
  38. get { return judgeresultPhyDesc; }
  39. set { judgeresultPhyDesc = value; }
  40. }
  41. private string judgeresultFaceDesc = "";
  42. /// <summary>
  43. /// 表面判定结果
  44. /// </summary>
  45. [Description("表面判定结果")]
  46. [JsonProperty("judgeresultFaceDesc")]
  47. public string JudgeresultFaceDesc
  48. {
  49. get { return judgeresultFaceDesc; }
  50. set { judgeresultFaceDesc = value; }
  51. }
  52. private string judgeresultSpecDesc = "";
  53. /// <summary>
  54. /// 公差判定结果
  55. /// </summary>
  56. [Description("公差判定结果")]
  57. [JsonProperty("judgeresultSpecDesc")]
  58. public string JudgeresultSpecDesc
  59. {
  60. get { return judgeresultSpecDesc; }
  61. set { judgeresultSpecDesc = value; }
  62. }
  63. private string judgeresultDesc = "";
  64. /// <summary>
  65. /// 综合判定结果
  66. /// </summary>
  67. [Description("综合判定结果")]
  68. [JsonProperty("judgeresultDesc")]
  69. public string JudgeresultDesc
  70. {
  71. get { return judgeresultDesc; }
  72. set { judgeresultDesc = value; }
  73. }
  74. private string validflagDesc = "";
  75. /// <summary>
  76. /// 有效标志
  77. /// </summary>
  78. [Description("有效标志")]
  79. [JsonProperty("validflagDesc")]
  80. public string ValidflagDesc
  81. {
  82. get { return validflagDesc; }
  83. set { validflagDesc = value; }
  84. }
  85. }
  86. }