namespace HStation.Dto.Assets { public class AssetsCompressorMainAndPartMapDto { public AssetsCompressorMainAndPartMapDto() { } public AssetsCompressorMainAndPartMapDto(Model.AssetsCompressorMainAndPartMapping rhs) { this.PartID = rhs.PartID; this.MainID = rhs.MainID; this.ID = rhs.ID; } /// /// ID /// public long ID { get; set; } /// /// 系列ID /// public long SeriesID { get; set; } /// /// 型号ID /// public long MainID { get; set; } /// /// 产品ID /// public long PartID { get; set; } } }