duheng
2024-07-25 713d5218ee2b47c0c92f75c19c49bb7e883cd214
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace IStation.ViewModel
{
 
    public class RealTimeData
    {
        public DateTime Time { get; set; }
        public int OpenPumpCount { get; set; }
        public double WaterLevelC { get; set; }//长江
        public double WaterLevelQ { get; set; }//前池
        public double WaterLevelH { get; set; }//水库水位
        public double Head { get; set; }
        public double Flow { get; set; }//瞬时值, 不考虑时间段
        public double Power { get; set; }//瞬时值, 不考虑时间段
 
        //public double SFlow { get; set; }//流量 , 考虑时间段
        //public double Ele { get; set; }//用电度数 , 考虑时间段
        //public double Money { get; set; }//费电 , 考虑时间段
 
        public double TotalFlow { get; set; }//流量累计
        public double TotalEle { get; set; }//用电度数累计
        public double TotalMoney { get; set; }//费电累计
        //public List<IStation.CalcModel.PumpTimeData> PumpDatas { get; set; }
    }
 
}