lixiaojun
2024-10-29 2bbfc173c71bdd549a42bf31eee81b9432c2dbed
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
namespace HStation.WinFrmUI
{
    public class XhsProjectSimulationAnalysisViewModel
    {
        public XhsProjectSimulationAnalysisViewModel()
        { }
 
        public XhsProjectSimulationAnalysisViewModel(XhsProjectSimulationAnalysisViewModel rhs)
        {
            this.Name = rhs.Name;
            this.Description = rhs.Description;
            this.Code = rhs.Code;
            this.Type = rhs.Type;
        }
 
        //构件属性
        [DisplayName("构件属性")]
        [Browsable(true)]
        public string Name { get; set; }
 
        //状态信息
        [DisplayName("状态信息")]
        [Browsable(true)]
        public string Description { get; set; }
 
        //构件编码
        [DisplayName("构件编码")]
        [Browsable(true)]
        public string Code { get; set; }
 
        //构件类型
        [DisplayName("构件类型")]
        [Browsable(true)]
        public string Type { get; set; }
 
        //解析状态
        [DisplayName("解析状态")]
        [Browsable(true)]
        public string PropStatus { get; set; }
 
        /// <summary>
        /// 错误等级
        /// </summary>
        [DisplayName("错误等级")]
        [Browsable(false)]
        public string ErrorLevel { get; set; }
    }
}