lixiaojun
2024-10-31 abf1e3b3334ab47c38aa92405a11a6ec92b7847a
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
namespace Yw.WinFrmUI
{
    /// <summary>
    /// 
    /// </summary>
    public class HydroCouplingViewModel : HydroJunctionViewModel
    {
        /// <summary>
        /// 
        /// </summary>
        public HydroCouplingViewModel() { }
 
        /// <summary>
        /// 
        /// </summary>
        public HydroCouplingViewModel(Yw.Model.HydroCouplingInfo rhs) : base(rhs)
        {
            this.Material = rhs.Material;
            this.Caliber = rhs.Caliber;
 
            this.Vmo = rhs;
        }
 
        /// <summary>
        /// 
        /// </summary>
        public HydroCouplingViewModel(Yw.Model.HydroCouplingInfo rhs, Yw.WinFrmUI.HydroCalcuNodeResult calcuResult) : base(rhs, calcuResult)
        {
            this.Material = rhs.Material;
            this.Caliber = rhs.Caliber;
 
            this.Vmo = rhs;
        }
 
        /// <summary>
        /// 材质
        /// </summary>
        [DisplayName("材质")]
        public string Material { get; set; }
 
        /// <summary>
        /// 口径(mm)
        /// </summary>
        [DisplayName("口径(mm)")]
        public double? Caliber { get; set; }
 
        /// <summary>
        /// Vmo
        /// </summary>
        [Browsable(false)]
        public new Yw.Model.HydroCouplingInfo Vmo { get; set; }
 
    }
}