using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Application { /// /// 能效管路运行日信息 /// public class EtaPipeLineRunDayInfo { /// /// 客户标识 /// public long CorpID { get; set; } /// /// 管路标识 /// public long PipeLineID { get; set; } /// /// 管路名称 /// public string PipeLineName { get; set; } /// /// 最后的运行状态 /// public int LastRunStatus { get; set; } /// /// 总运行时间 /// public int? TotalRunTime { get; set; } } }