namespace HStation.Vmo { /// /// 水池产品 /// public class AssetsTankPartMainVmo { /// /// /// public AssetsTankPartMainVmo() { } /// /// /// public AssetsTankPartMainVmo(Dto.AssetsTankPartMainDto rhs) { this.ID=rhs.ID; this.SeriesID=rhs.SeriesID; this.NO=rhs.NO; this.Code=rhs.Code; this.SortCode=rhs.SortCode; } /// /// ID /// public long ID { get; set; } /// /// 系列ID /// public long SeriesID { get; set; } /// /// 产品编号 /// public string NO { get; set; } /// /// 产品图号 /// public string Code { get; set; } /// /// 排序码 /// public int SortCode { get; set; } } }