using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OrpaonEMS.App.Models { public class RtPcsPwChartModel { public RtPcsPwChartModel() { } /// /// 时间 /// public DateTime CurTime { get; set; } /// /// 输出有功功率值 /// public double QPw { get; set; } /// /// 指令数据功率值 /// public double CmdPw { get; set; } } }