namespace HStation.Vmo
{
///
/// 水池型号产品映射
///
public class AssetsTankMainAndPartMappingVmo
{
///
///
///
public AssetsTankMainAndPartMappingVmo() { }
///
///
///
public AssetsTankMainAndPartMappingVmo(Dto.AssetsTankMainAndPartMappingDto rhs)
{
this.ID=rhs.ID;
this.SeriesID=rhs.SeriesID;
this.MainID=rhs.MainID;
this.PartID=rhs.PartID;
}
///
/// ID
///
public long ID { get; set; }
///
/// 系列ID
///
public long SeriesID { get; set; }
///
/// 型号ID
///
public long MainID { get; set; }
///
/// 产品ID
///
public long PartID { get; set; }
}
}