duheng
7 天以前 4de480ec624d3b79ca690dc906e10cd2fbdc9be7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
namespace IStation.CalcModel
{
    public class PumpInfo
    {
        public PumpInfo() { }
        public long ID { get; set; }
        public string Name { get; set; }
        public int Status { get; set; }
 
        public Model.Product<Model.Pump> Product { get; set; }
 
        public IStation.Model.Pump RatedParas { get; set; }
        /// <summary>
        /// 曲线信息
        /// </summary>    
        public IStation.Model.FeatCurveExpressGroup CurveInfo { get; set; }
    }
}