ningshuxia
2024-06-18 e83dca6e861b622b54d3392ca0d3f1f1eb69f7c9
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
32
33
34
35
36
37
using System.ComponentModel.DataAnnotations;
 
namespace IStation.Epanet.Analysis
{
    public class InputNode
    {
        public InputNode() { }
        public InputNode(InputNode rhs)
        {
            this.ID = rhs.ID;
            this.Index = rhs.Index;
            this.Elevation = rhs.Elevation;
            this.BaseDemand = rhs.BaseDemand;
            this.Pattern = rhs.Pattern;
            this.Emitter = rhs.Emitter;
        }
 
        [Display(Name = "标识")]
        public string ID { get; set; }
 
        [Display(Name = "索引")]
        public int Index { get; set; }
 
        [Display(Name = "标高")]
        public float Elevation { get; set; }
 
        [Display(Name = "基础需水量")]
        public float BaseDemand { get; set; }
 
        [Display(Name = "时间模式索引")]
        public float Pattern { get; set; }
 
        [Display(Name = "扩散器系数")]
        public float Emitter { get; set; }
 
    }
}