using System.Collections.Generic; namespace IBox.WinFrmUI { /// /// /// public class StationMonitorListGroupMobileDto { /// /// id /// public long ID { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 运行状态 /// public string RunStatus { get; set; } /// /// 排序码 /// public int SortCode { get; set; } /// /// 说明 /// public string Description { get; set; } /// /// 监测项列表 /// public List MonitorList { get; set; } } }