using Znyc.CloudCar.Model.Dtos.EquipmentPicture;
namespace Znyc.CloudCar.Model.Dtos.Equipment
{
public class EquipmentOutput : EquipmentListOutput
{
///
/// 设备编号
///
public long EquipmentNumber { get; set; }
///
/// 设备类型
///
public long EquipmentType { get; set; }
///
/// 设备类型名称
///
public string CategoryName { get; set; }
///
/// 设备品牌
///
public long EquipmentBrand { get; set; }
///
/// 设备品牌名称
///
public string BrandName { get; set; }
///
/// 汽车底盘
///
public long AutomobileChassis { get; set; }
///
/// 汽车底盘名称
///
public string AutomobileChassisName { get; set; }
///
/// 臂架长度
///
public long BoomLength { get; set; }
///
/// 臂架长度
///
public string BoomLengthName { get; set; }
///
/// 装载方量
///
public long ReprintVolume { get; set; }
///
/// 装载方量
///
public string ReprintVolumeName { get; set; }
///
/// 最大输送量
///
public long MaxTransportation { get; set; }
///
/// 最大输送量
///
public string MaxTransportationName { get; set; }
///
/// 设备型号
///
public string EquipmentModel { get; set; }
///
/// 设备吨位
///
public int EquipmentTonnage { get; set; }
///
/// 斗容
///
public int Capacity { get; set; }
///
/// 功率
///
public string Power { get; set; }
///
/// 出厂年份
///
public long AppearanceDate { get; set; }
///
/// 发布时间
///
public DateTime CreatedTime { get; set; }
///
/// 是否公开
///
public bool IsPublic { get; set; }
///
/// 浏览量
///
public int PageView { get; set; }
///
/// 设备信息图片
///
public List equipmentPictures { get; set; }
///
/// 行驶证图片
///
public List DriverLicense { get; set; }
///
/// 是否收藏
///
public bool IsCollection { get; set; }
///
/// 是否获取过手机号
///
public bool IsGetPhone { get; set; }
///
/// 发布日期
///
public string ReleaseDate { get; set; }
///
/// 驾驶证信息图片
///
public List DriverLicensePictures { get; set; }
///
/// 省
///
public long ProvinceId { get; set; }
///
/// 市
///
public long CityId { get; set; }
}
}