using Znyc.CloudCar.Model.Dtos.EquipmentPicture; namespace Znyc.CloudCar.Model.Dtos.Equipment { public class EquipmentAddInput { /// /// 标题 /// public string Title { get; set; } /// /// 设备类型 /// public long EquipmentType { get; set; } /// /// 设备品牌 /// public long EquipmentBrand { get; set; } /// /// 汽车底盘 /// public long AutomobileChassis { get; set; } /// /// 臂架长度 /// public long BoomLength { get; set; } /// /// 装载方量 /// public long ReprintVolume { get; set; } /// /// 最大输送量 /// public long MaxTransportation { get; set; } /// /// 设备型号 /// public string EquipmentModel { get; set; } /// /// 设备吨位 /// public int EquipmentTonnage { get; set; } /// /// 斗容 /// public int Capacity { get; set; } /// /// 功率 /// public string Power { get; set; } /// /// 设备介绍 /// public string Introduction { get; set; } /// /// 出厂年份 /// public int AppearanceDate { get; set; } /// /// 出售价格 /// public decimal SellingPrice { get; set; } /// /// 车辆位置 /// public string AutomobileLocation { get; set; } /// /// 联系人 /// public string Contact { get; set; } /// /// 联系人电话 /// public string ContactPhone { get; set; } /// /// 设备图片 /// public List EquipmentPictures { get; set; } /// /// 省 /// public long ProvinceId { get; set; } /// /// 省 /// public long CityId { get; set; } } }