using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Application { /// /// 能效运行区间项 /// public class EtaRunSpanItem { /// /// /// 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; } } }