lixiaojun
2024-10-14 bfc0cf792303872355e91679830d7b142fa35f9c
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
namespace Yw.WinFrmUI.Phart
{
    public class PumpPointItmeViewModel
    {
        public PumpPointItmeViewModel() { }
        public PumpPointItmeViewModel(PumpPointItmeViewModel rhs)
        {
            this.Group = rhs.Group;
            this.Name = rhs.Name;
            this.Value = rhs.Value;
            this.Unit = rhs.Unit;
        }
 
        /// <summary>
        /// 组
        /// </summary>
        public string Group { get; set; }
 
        /// <summary>
        /// 
        /// </summary>
        public string Name { get; set; }
 
        /// <summary>
        /// 
        /// </summary>
        public string Value { get; set; }
 
        /// <summary>
        /// 
        /// </summary>
        public string Unit { get; set; }
         
 
    }
 
 
}