| | |
| | | using HStation.Assets; |
| | | using System.Reflection.Metadata; |
| | | |
| | | namespace HStation.Dto.Assets |
| | | { |
| | |
| | | public AssetsCompressorMainDto(Model.AssetsCompressorMain rhs) |
| | | { |
| | | this.ID = rhs.ID; |
| | | this.Material = rhs.Material; |
| | | this.MinorLoss = rhs.MinorLoss; |
| | | this.Description = rhs.Description; |
| | | this.SortCode = rhs.SortCode; |
| | | this.KeyWord = rhs.KeyWord; |
| | | this.Name = rhs.Name; |
| | | this.SeriesID = rhs.SeriesID; |
| | | this.Name = rhs.Name; |
| | | this.Material = rhs.Material; |
| | | this.Caliber = rhs.Caliber; |
| | | this.SortCode = rhs.SortCode; |
| | | this.MinorLoss = rhs.MinorLoss; |
| | | this.KeyWord = rhs.KeyWord; |
| | | this.Description = rhs.Description; |
| | | } |
| | | |
| | | public long ID { get; set; } |
| | |
| | | public long SeriesID { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 口径 |
| | | /// </summary> |
| | | public double? Caliber { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 材料 |
| | | /// </summary> |
| | | public string Material { get; set; } |