using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Application { /// /// 能效运行区间业务信息 /// public class EtaRunSpanLogicInfo { /// /// /// public long CorpID { get; set; } /// /// /// public string ObjectType { get; set; } /// /// /// public long ObjectID { get; set; } /// /// /// public string ObjectName { get; set; } /// /// /// public List Records { get; set; } /// /// /// public List Items { get; set; } } }