using HStation.Assets;
namespace HStation.Dto.Assets
{
public class AssetsManufacturerMappingDto
{
public AssetsManufacturerMappingDto()
{ }
public AssetsManufacturerMappingDto(Model.AssetsManufacturerMapping 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; }
}
}