namespace HStation.Dto.Assets { public class AssetsCompressorPropContentDto { public AssetsCompressorPropContentDto() { } public AssetsCompressorPropContentDto(Model.AssetsCompressorPropContent rhs) { this.ID = rhs.ID; this.SeriesID = rhs.SeriesID; this.PropID = rhs.PropID; this.PartID = rhs.PartID; this.PropValue = rhs.PropValue; } /// /// ID /// public long ID { get; set; } /// /// 泵系列ID /// public long SeriesID { get; set; } /// /// 泵型号ID /// public long MainID { get; set; } /// /// 泵产品ID /// public long PartID { get; set; } /// /// 属性ID /// public long PropID { get; set; } /// /// 属性值 /// public string PropValue { get; set; } } }