QcmGpJudgeApplyPCtrlEntity.cs 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. using Core.Mes.Client.Comm.Attribute;
  2. using Core.StlMes.Client.Judge.Models;
  3. using Newtonsoft.Json;
  4. using System;
  5. using System.ComponentModel;
  6. namespace Core.StlMes.Client.Judge.ViewModels
  7. {
  8. public class QcmGpJudgeApplyPCtrlEntity : QcmGpJugdeApplyEntity
  9. {
  10. private string chemResultDesc = "";
  11. /// <summary>
  12. /// 成分结果
  13. /// </summary>
  14. [Description("成分结果")]
  15. [Nullable(true)]
  16. [DataLength(20)]
  17. [JsonProperty("chemResultDesc")]
  18. public string ChemResultDesc
  19. {
  20. get { return chemResultDesc; }
  21. set { chemResultDesc = value; }
  22. }
  23. private string phyResultDesc = "";
  24. /// <summary>
  25. /// 理化结果
  26. /// </summary>
  27. [Description("理化结果")]
  28. [Nullable(true)]
  29. [DataLength(20)]
  30. [JsonProperty("phyResultDesc")]
  31. public string PhyResultDesc
  32. {
  33. get { return phyResultDesc; }
  34. set { phyResultDesc = value; }
  35. }
  36. }
  37. }