namespace HStation.Vmo { /// /// /// public class AssetsPackageMfrMappingVmo { /// /// /// public AssetsPackageMfrMappingVmo() { } /// /// /// public AssetsPackageMfrMappingVmo(Dto.AssetsPackageMfrMappingDto rhs) { this.ID = rhs.ID; this.SeriesID = rhs.SeriesID; this.ManufacturerID = rhs.ManufacturerID; this.Paras = rhs.Paras == null ? null : new(rhs.Paras); this.Flags = rhs.Flags?.ToList(); this.TagName = rhs.TagName; this.Description = rhs.Description; } /// /// /// public long ID { get; set; } /// /// 系列ID /// public long SeriesID { get; set; } /// /// 厂家ID /// public long ManufacturerID { get; set; } /// /// /// public Dictionary Paras { get; set; } /// /// /// public List Flags { get; set; } /// /// /// public string TagName { get; set; } /// /// /// public string Description { get; set; } } }