MatZcMCtrlEntity.cs 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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 MatZcMCtrlEntity : MatZcMEntity
  7. {
  8. private string lotNo = "";
  9. public string LotNo1
  10. {
  11. get { return lotNo; }
  12. set { lotNo = value; }
  13. }
  14. private string chemJudgeState = "";
  15. /// <summary>
  16. /// 判定状态
  17. /// </summary>
  18. [Description("判定状态")]
  19. [JsonProperty("chemJudgeState")]
  20. public string ChemJudgeState
  21. {
  22. get { return chemJudgeState; }
  23. set { chemJudgeState = value; }
  24. }
  25. private string phyJudgeState = "";
  26. /// <summary>
  27. /// 判定状态
  28. /// </summary>
  29. [Description("判定状态")]
  30. [JsonProperty("phyJudgeState")]
  31. public string PhyJudgeState
  32. {
  33. get { return phyJudgeState; }
  34. set { phyJudgeState = value; }
  35. }
  36. private string chemResultDesc = "";
  37. /// <summary>
  38. /// 成分判定结果
  39. /// </summary>
  40. [Description("成分判定结果")]
  41. [JsonProperty("chemResultDesc")]
  42. public string ChemResultDesc
  43. {
  44. get { return chemResultDesc; }
  45. set { chemResultDesc = value; }
  46. }
  47. private string phyResultDesc = "";
  48. /// <summary>
  49. /// 理化判定结果
  50. /// </summary>
  51. [Description("理化判定结果")]
  52. [JsonProperty("chemResultDesc")]
  53. public string PhyResultDesc
  54. {
  55. get { return phyResultDesc; }
  56. set { phyResultDesc = value; }
  57. }
  58. }
  59. }