using Znyc.CloudCar.Model.Dtos.EquipmentPicture; namespace Znyc.CloudCar.Model.Dtos.Equipment { public class EquipmentListOutput { public long Id { get; set; } /// /// 标题 /// public string Title { get; set; } /// /// 设备介绍 /// public string Introduction { get; set; } /// /// 出售价格 /// public decimal SellingPrice { get; set; } /// /// 车辆位置 /// public string AutomobileLocation { get; set; } /// /// 联系人 /// public string Contact { get; set; } /// /// 联系人电话 /// public string ContactPhone { get; set; } /// /// 状态,10=出售中,11=审核中,30=未通过,40=已成交,99=未通过 /// public int State { get; set; } /// /// 是否置顶 /// public bool IsTop { get; set; } /// /// UserId /// public long UserId { get; set; } /// /// 头像 /// public string AvatarUrl { get; set; } /// /// 姓名 /// public string UserName { get; set; } public bool IsGetPhone { get; set; } /// /// 设备图片 /// public List EquipmentPictures { get; set; } /// /// 获取电话云币 /// public int CallPhoneCurrency { get; set; } /// /// 出厂时间 /// public int AppearanceDate { get; set; } } }