| | |
| | | this.Name = rhs.Name; |
| | | this.Description = rhs.Description; |
| | | this.SortCode = rhs.SortCode; |
| | | this.ID = rhs.ID; |
| | | this.Name = rhs.Name; |
| | | this.Description = rhs.Description; |
| | | this.SeriesID = rhs.SeriesID; |
| | |
| | | public long SeriesID { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 口径 |
| | | /// 最低水位 |
| | | /// </summary> |
| | | [DisplayName("口径(mm)")] |
| | | [DisplayName("最低水位")] |
| | | [Browsable(true)] |
| | | public string Caliber { get; set; } |
| | | public double MinLevel { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 材料 |
| | | /// 最高水位 |
| | | /// </summary> |
| | | [DisplayName("材料")] |
| | | [DisplayName("最高水位")] |
| | | [Browsable(true)] |
| | | public string Material { get; set; } |
| | | public double MaxLevel { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 公称直径 |
| | | /// </summary> |
| | | [DisplayName("公称直径")] |
| | | [Browsable(true)] |
| | | public double DN { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 最小容积 |
| | | /// </summary> |
| | | [DisplayName("最小容积")] |
| | | [Browsable(true)] |
| | | public double MinVol { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 是否允许溢流 |
| | | /// </summary> |
| | | [DisplayName("是否溢流")] |
| | | [Browsable(true)] |
| | | public bool OverFlow { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 损失系数 |
| | |
| | | [DisplayName("说明")] |
| | | [Browsable(true)] |
| | | public string Description { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 阀门开度 |
| | | /// </summary> |
| | | [DisplayName("阀门开度")] |
| | | [Browsable(true)] |
| | | public int? TankLift { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 排序码 |
| | |
| | | [DisplayName("关键字")] |
| | | [Browsable(true)] |
| | | public string KeyWord { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 阀门设置 |
| | | /// </summary> |
| | | [DisplayName("阀门设置")] |
| | | [Browsable(true)] |
| | | public string TankSetting { get; set; } |
| | | } |
| | | } |