QcmZgChemjudgeExceptionCtrlEntity.cs 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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 QcmZgChemjudgeExceptionCtrlEntity : QcmZgChemjudgeExceptionEntity
  9. {
  10. private string judgeresultChemDesc;
  11. private string orderisunchainDesc;
  12. private string validflagDesc;
  13. /// <summary>
  14. /// 成分判定结果(4074)
  15. /// </summary>
  16. [Description("成分判定结果")]
  17. [Nullable(false)]
  18. [DataLength(20)]
  19. [JsonProperty("judgeresultChemDesc")]
  20. public string JudgeresultChemDesc
  21. {
  22. get { return judgeresultChemDesc; }
  23. set { judgeresultChemDesc = value; }
  24. }
  25. /// <summary>
  26. /// 是否脱单(1:是,0:否)
  27. /// </summary>
  28. [Description("是否脱单")]
  29. [Nullable(false)]
  30. [DataLength(1)]
  31. [JsonProperty("orderisunchainDesc")]
  32. public string OrderisunchainDesc
  33. {
  34. get { return orderisunchainDesc; }
  35. set { orderisunchainDesc = value; }
  36. }
  37. /// <summary>
  38. /// 有效标志(1:有效;0:无效)
  39. /// </summary>
  40. [Description("有效标志")]
  41. [Nullable(false)]
  42. [DataLength(1)]
  43. [JsonProperty("validflagDesc")]
  44. public string ValidflagDesc
  45. {
  46. get { return validflagDesc; }
  47. set { validflagDesc = value; }
  48. }
  49. }
  50. }