Shuxia Ning
2024-10-23 217c17853daef559040a66aced4a613c4308e4ca
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
50
51
52
53
54
55
56
57
using System.ComponentModel.DataAnnotations;
 
namespace HStation.WinFrmUI.PhartRelation
{
    public class XhsSingleResultViewModel
    {
        public XhsSingleResultViewModel() { }
        public XhsSingleResultViewModel(XhsSingleResultViewModel rhs)
        {
 
            this.ID = rhs.ID;
            this.Name = rhs.Name;
            this.Code = rhs.Code;
            this.IsBp = rhs.IsBp;
            this.RunStatus = rhs.RunStatus;
            this.CurrentHz = rhs.CurrentHz;
 
        }
         
        /// <summary>
        /// id
        /// </summary>
        public long ID { get; set; }
 
        /// <summary>
        /// 名称
        /// </summary>
        [Display(Name = "名称")]
        public string Name { get; set; }
 
        /// <summary>
        /// 编码
        /// </summary>
        [Display(Name = "编码")]
        public string Code { get; set; }
 
        /// <summary>
        /// 变频
        /// </summary>
        [Display(Name = "变频")]
        public bool IsBp { get; set; }
 
        /// <summary>
        /// 运行状态
        /// </summary>
        [Display(Name = "运行状态")]
        public bool RunStatus { get; set; }
         
        /// <summary>
        /// 设定频率
        /// </summary>
        [Display(Name = "设定频率")]
        public double CurrentHz { get; set; }
 
 
    }
}