using HStation.Assets; namespace HStation.Vmo { /// /// 厂商 /// public class AssetsManufacturerMappingVmo { public AssetsManufacturerMappingVmo() { } public AssetsManufacturerMappingVmo(AssetsManufacturerMappingVmo rhs) { this.ID = rhs.ID; this.ManufactuerID = rhs.ManufactuerID; this.SeriesID = rhs.SeriesID; this.AssetsType = rhs.AssetsType; this.Description = rhs.Description; } public long ID { get; set; } /// /// 厂商ID /// public long ManufactuerID { get; set; } /// /// 系列ID /// public long SeriesID { get; set; } /// /// 资产类型 /// public eAsstesType AssetsType { get; set; } /// /// 说明 /// public string Description { get; set; } } }