lixiaojun
2024-10-26 dd4da9a651330fabe210618581299ac3536bda2f
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
namespace Yw.WinFrmUI
{
    /// <summary>
    /// 
    /// </summary>
    public class HydroElbowViewModel : HydroCouplingViewModel
    {
        /// <summary>
        /// 
        /// </summary>
        public HydroElbowViewModel() : base() { }
 
        /// <summary>
        /// 
        /// </summary>
        public HydroElbowViewModel(Yw.Model.HydroElbowInfo rhs) : base(rhs)
        {
            this.BendingAngle = rhs.BendingAngle;
            this.ElbowType = rhs.ElbowType;
 
            this.Vmo = rhs;
        }
 
        /// <summary>
        /// 
        /// </summary>
        public HydroElbowViewModel(Yw.Model.HydroElbowInfo rhs, Yw.WinFrmUI.HydroCalcuNodeResult calcuResult) : base(rhs, calcuResult)
        {
            this.BendingAngle = rhs.BendingAngle;
            this.ElbowType = rhs.ElbowType;
 
            this.Vmo = rhs;
        }
 
        /// <summary>
        /// 弯曲角度
        /// </summary>
        [DisplayName("弯曲角度(°)")]
        public double? BendingAngle { get; set; }
 
        /// <summary>
        /// 弯头类型
        /// </summary>
        [DisplayName("弯头类型")]
        public string ElbowType { get; set; }
 
        /// <summary>
        /// 
        /// </summary>
        public new Yw.Model.HydroElbowInfo Vmo { get; set; }
 
    }
}