namespace PBS.Dto.WE
{
///
/// 用水器具映射
///
public class UtensilMappingDto
{
///
///
///
public UtensilMappingDto() { }
///
///
///
public UtensilMappingDto(Model.WE.UtensilMapping rhs)
{
this.ID = rhs.ID;
this.ItemID = rhs.ItemID;
this.UtensilID = rhs.UtensilID;
this.UtensilCount = rhs.UtensilCount;
this.RatedFlow = rhs.RatedFlow;
this.MinRatedFlow = rhs.MinRatedFlow;
this.SortCode = rhs.SortCode;
this.Description = rhs.Description;
}
///
/// 标识
///
public long ID { get; set; }
///
/// 用水当量标识
///
public long ItemID { get; set; }
///
/// 用水器具标识
///
public long UtensilID { get; set; }
///
/// 用水器具数量
///
public int UtensilCount { get; set; }
///
/// 额定流量
///
public double RatedFlow { get; set; }
///
/// 最小额定流量
///
public double MinRatedFlow { get; set; }
///
/// 排序码
///
public int SortCode { get; set; }
///
/// 说明
///
public string Description { get; set; }
}
}