namespace HStation.Dto.Assets { public class AssetsCompressorPartMainDto { public AssetsCompressorPartMainDto() { } public AssetsCompressorPartMainDto(Model.AssetsCompressorPartMain rhs) { this.ID = rhs.ID; this.Name = rhs.Name; this.SeriesID = rhs.SeriesID; this.Code = rhs.Code; this.NO = rhs.NO; this.SortCode = rhs.SortCode; } /// /// ID /// public long ID { get; set; } /// /// 泵系列ID /// public long SeriesID { get; set; } /// /// 产品编号 /// public string NO { get; set; } /// /// 产品名称 /// public string Name { get; set; } /// /// 产品图号 /// public string Code { get; set; } /// /// 排序码 /// public int SortCode { get; set; } } }