Shuxia Ning
2024-12-11 f02df8852f3adbebd6c50a6c0077065ca18ccd84
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
58
59
60
61
62
63
64
65
66
67
68
69
70
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Yw.Model;
 
namespace HStation.WinFrmUI
{
    public class CreateXhsSchemePipeChangeViewMdoel
    {
        public CreateXhsSchemePipeChangeViewMdoel()
        {
 
        }
 
 
        /// <summary>
        /// 标识
        /// </summary>
        public string Id { get; set; }
 
        /// <summary>
        /// 名称
        /// </summary>
        public string Name { get; set; }
 
        /// <summary>
        /// 编码
        /// </summary>
        public string Code { get; set; }
 
 
        /// <summary>
        /// 材料
        /// </summary> 
        public string Material { get; set; }
 
        //
        // 摘要:
        //     直径(mm)
        [SysProp("Diameter", null)]
        public double Diameter { get; set; }
 
        //
        // 摘要:
        //     长度 (m)
        [SysProp("Length", null)]
        public double Length { get; set; }
 
        //
        // 摘要:
        //     粗糙系数
        [SysProp("Roughness", null)]
        public double Roughness { get; set; }
 
        //
        // 摘要:
        //     局阻系数
        [SysProp("MinorLoss", null)]
        public double MinorLoss { get; set; }
 
 
        /// <summary>
        /// 管段状态
        /// </summary>
        public string LinkStatus { get; set; }
 
    }
}