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; this.TagName = rhs.TagName; } /// /// 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; } /// /// 标签 /// public string TagName { get; set; } } }