PlnSteelforfurnaceCtrlEntity.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 PlnSteelforfurnaceCtrlEntity : PlnSteelforfurnaceEntity
  9. {
  10. private string judgeState = "";
  11. /// <summary>
  12. /// 判定结果
  13. /// </summary>
  14. [Description("判定状态")]
  15. [Nullable(true)]
  16. [DataLength(20)]
  17. [JsonProperty("judgeState")]
  18. public string JudgeState
  19. {
  20. get { return judgeState; }
  21. set { judgeState = value; }
  22. }
  23. private string judgeResult = "";
  24. /// <summary>
  25. /// 判定结果
  26. /// </summary>
  27. [Description("判定结果")]
  28. [Nullable(true)]
  29. [DataLength(20)]
  30. [JsonProperty("judgeResult")]
  31. public string JudgeResult
  32. {
  33. get { return judgeResult; }
  34. set { judgeResult = value; }
  35. }
  36. }
  37. }