using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Application { /// /// 监测运行区间项 /// public class MonitorRunSpanItem { /// /// 客户标识 /// public long CorpID { get; set; } /// /// 对象类型 /// public string ObjectType { get; set; } /// /// 对象标识 /// public long ObjectID { get; set; } /// /// 对象名称 /// public string ObjectName { get; set; } /// /// 区间集合 /// public List Spans { get; set; } } }