BoostStationInfo.cs 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace NEIntelligentControl2.Models.BoostStation
  7. {
  8. /// <summary>
  9. /// 升压站信息
  10. /// </summary>
  11. public class BoostStationInfo
  12. {
  13. /// <summary>
  14. /// 升压站ID
  15. /// </summary>
  16. public string Id { get; set; }
  17. /// <summary>
  18. /// 场站名称
  19. /// </summary>
  20. public string Name { get; set; }
  21. /// <summary>
  22. /// 标签名称
  23. /// </summary>
  24. public string TagName { get; set; }
  25. /// <summary>
  26. /// 序号
  27. /// </summary>
  28. public int Index { get; set; }
  29. /// <summary>
  30. /// 背景图片路径
  31. /// </summary>
  32. public string Background { get; set; }
  33. /// <summary>
  34. /// 更新时间
  35. /// </summary>
  36. public long UpdatedDate { get; set; }
  37. private List<BoostStationPointInfo> boostStationPointInfos;
  38. /// <summary>
  39. /// 控件信息
  40. /// </summary>
  41. public List<BoostStationPointInfo> BoostStationPointInfos { get => boostStationPointInfos ?? (boostStationPointInfos = new List<BoostStationPointInfo>()); set => boostStationPointInfos = value; }
  42. }
  43. }