Shuxia Ning
2024-12-02 a2f11a5e60bb577fb793949191793a59953e236b
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
38
39
40
41
42
43
44
45
46
47
48
49
namespace Yw.WinFrmUI.Phart
{
    public class PumpSectPointViewModel
    {
        public PumpSectPointViewModel() { }
        public PumpSectPointViewModel(PumpSectPointViewModel rhs)
        {
            this.Id = rhs.Id;
            this.Name = rhs.Name;
            this.QueryQ = rhs.QueryQ;
            this.QueryH = rhs.QueryH;
            this.QueryP = rhs.QueryP;
            this.QueryE = rhs.QueryE;
        }
 
        /// <summary>
        /// 标识
        /// </summary>
        public string Id { get; set; }
 
        /// <summary>
        /// 名称
        /// </summary>
        public string Name { get; set; }
 
        /// <summary>
        /// 
        /// </summary>
        public string QueryQ { get; set; }
 
        /// <summary>
        /// 
        /// </summary>
        public string QueryH { get; set; }
 
        /// <summary>
        /// 
        /// </summary>
        public string QueryE { get; set; }
 
        /// <summary>
        /// 
        /// </summary>
        public string QueryP { get; set; }
 
    }
 
 
}