lixiaojun
2024-10-23 324eac5c3cc1ecf3118c83065b95c7a28440b948
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
namespace Yw.WinFrmUI
{
    /// <summary>
    /// 
    /// </summary>
    public class HydroElbowBulkSetViewModel : HydroCouplingBulkSetViewModel
    {
        /// <summary>
        /// 
        /// </summary>
        public HydroElbowBulkSetViewModel() : base() { }
 
        /// <summary>
        /// 
        /// </summary>
        public HydroElbowBulkSetViewModel(Yw.Model.HydroElbowInfo rhs) : base(rhs)
        {
            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; }
 
    }
}