SampleDetailElementArg.cs 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. namespace SHJX.Service.Model.DiaplayModel
  2. {
  3. public class SampleDetailElementArg : IElementArg
  4. {
  5. /// <summary>
  6. /// 控件编号
  7. /// </summary>
  8. public string TagNo { get; set; }
  9. /// <summary>
  10. /// 详情信息
  11. /// </summary>
  12. private string _detailInfo;
  13. public string DetailInfo
  14. {
  15. get => _detailInfo;
  16. set => SetProperty(ref _detailInfo, value);
  17. }
  18. /// <summary>
  19. /// 顶部颜色
  20. /// </summary>
  21. private string _tagColor;
  22. public string TagColor
  23. {
  24. get => _tagColor;
  25. set => SetProperty(ref _tagColor, value);
  26. }
  27. /// <summary>
  28. /// 体积
  29. /// </summary>
  30. private string _volume;
  31. public string Volume
  32. {
  33. get => _volume;
  34. set => SetProperty(ref _volume, value);
  35. }
  36. /// <summary>
  37. /// 结果
  38. /// </summary>
  39. private string _result;
  40. public string Result
  41. {
  42. get => _result;
  43. set => SetProperty(ref _result, value);
  44. }
  45. public SampleDetailElementArg()
  46. {
  47. DetailInfo = string.Empty;
  48. Volume = string.Empty;
  49. Result = string.Empty;
  50. }
  51. }
  52. }