ningshuxia
2024-07-08 04e811eb41fe6adce30ec78926973b0e02ed6bbe
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
namespace IStation.Dto.Epanet
{
 
    /// <summary>
    /// µ÷¶ÈÖµ
    /// </summary>
    public class ScheduleValue
    {
        public ScheduleValue() { }
        public ScheduleValue(ScheduleValue rhs)
        {
            this.ModelId = rhs.ModelId;
            this.ScadaId = rhs.ScadaId;
            this.ScadaValue = rhs.ScadaValue;
            this.ModelValue = rhs.ModelValue;
            this.Unit = rhs.Unit;
        }
 
        public string ModelId { get; set; }
        public string ScadaId { get; set; }
        public double? ScadaValue { get; set; }
        public double? ModelValue { get; set; } 
        public string Unit { get; set; }
 
    }
}