using System; using System.Collections.Generic; using Znyc.Cloudcar.Admin.Security.Entitys; namespace Znyc.Cloudcar.Admin.Security.Dtos { /// /// 活动输出模型 /// public class EquipmentOutputDto { public long Id { get; set; } /// /// 编号 /// public long EquipmentNumber { get; set; } /// /// 姓名 /// public string UserName { get; set; } /// /// 头像 /// public string Avatar { get; set; } /// /// 微信昵称 /// public string NickName { get; set; } /// /// 用户Id /// public long UserId { get; set; } /// /// 标题 /// public string Title { get; set; } /// /// 联系人 /// public string Contact { get; set; } /// /// 联系人电话 /// public string ContactPhone { get; set; } /// /// 车辆位置 /// public string AutomobileLocation { get; set; } /// /// 设备类型 /// public long EquipmentType { get; set; } /// /// 设备类型 /// public string EquipmentTypeName { get; set; } /// /// 设备品牌 /// public long EquipmentBrand { get; set; } /// /// 设备品牌 /// public string EquipmentBrandName { get; set; } /// /// /// public int State { get; set; } /// /// /// public string StateName { get; set; } /// /// 浏览量 /// public int PageView { get; set; } /// /// 设备图片 /// public List EquipmentPictures { get; set; } /// /// 行驶证 /// public List DrivingPictures { get; set; } /// /// 是否置顶 /// public bool IsTop { get; set; } /// /// 置顶到期时间 /// public DateTime TopExpireDate { get; set; } /// /// 刷新时间 /// public DateTime RefreshDate { get; set; } /// /// 创建时间 /// public DateTime CreatedTime { get; set; } ///// ///// 设备型号 ///// //public string EquipmentModel { get; set; } /// /// 汽车底盘 /// public long AutomobileChassis { get; set; } /// /// 汽车底盘 /// public string AutomobileChassisName { get; set; } ///// ///// 装载方量 ///// //public long ReprintVolume { get; set; } ///// ///// 设备吨位 ///// //public int EquipmentTonnage { get; set; } ///// ///// 斗容 ///// //public int Capacity { get; set; } /// /// 设备介绍 /// public string Introduction { get; set; } ///// ///// 出厂日期 ///// //public DateTime AppearanceDate { get; set; } ///// ///// 出售价格 ///// //public decimal SellingPrice { get; set; } ///// ///// 是否公开 ///// //public bool IsPublic { get; set; } /// /// 臂架长度 /// public long BoomLength { get; set; } /// /// 臂架长度 /// public string BoomLengthName { get; set; } /// /// /// public int PromoteType { get; set; } /// /// /// public bool IsPromote { get; set; } } }