namespace HStation.WinFrmUI
{
///
///
///
public class AssetsCoolingFactorMgrViewModel
{
///
///
///
public AssetsCoolingFactorMgrViewModel() { }
///
///
///
public AssetsCoolingFactorMgrViewModel(HStation.Vmo.AssetsCoolingFactorVmo rhs)
{
this.ID = rhs.ID;
this.Name = rhs.Name;
this.Material = rhs.Material;
this.Caliber = rhs.Caliber;
this.Coefficient = rhs.Coefficient;
this.LowerLimit = rhs.LowerLimit;
this.SortCode = rhs.SortCode;
this.Description = rhs.Description;
this.Vmo = rhs;
}
///
/// id
///
[Display(Name = "ID")]
public long ID { get; set; }
///
/// 名称
///
[Display(Name = "名称")]
public string Name { get; set; }
///
/// 材料
///
[Display(Name = "材料")]
public string Material { get; set; }
///
/// 口径
///
[Display(Name = "口径(mm)")]
public double? Caliber { get; set; }
///
/// 喷射系数
///
[Display(Name = "喷射系数")]
public double Coefficient { get; set; }
///
/// 最小压力
///
[Display(Name = "最小压力(m)")]
public double LowerLimit { get; set; }
///
/// 排序码
///
[Display(Name = "排序码")]
public int SortCode { get; set; }
///
/// 说明
///
[Display(Name = "说明")]
public string Description { get; set; }
///
///
///
public HStation.Vmo.AssetsCoolingFactorVmo Vmo { get; set; }
}
}