using Znyc.CloudCar.Model.Dtos.EquipmentPicture; namespace Znyc.CloudCar.Model.Dtos.Equipment { public class MyEquipmentListOutput { public long Id { get; set; } /// /// 状态 /// public int state { get; set; } /// /// 标题 /// public string Title { get; set; } /// /// 设备介绍 /// public string Introduction { get; set; } /// /// 出售价格 /// public double SellingPrice { get; set; } /// /// 车辆位置 /// public string AutomobileLocation { get; set; } /// /// 设备图片 /// public List EquipmentPictures { get; set; } /// /// 刷新时间 /// public DateTime RefreshDate { get; set; } /// /// 是否置顶 /// public bool IsTop { get; set; } /// /// 是否公开 /// public bool IsPublic { get; set; } /// /// 审核结果 /// public string Note { get; set; } /// /// 审核时间 /// public DateTime AuditTime { get; set; } /// /// 出厂年份 /// public int AppearanceDate { get; set; } /// /// 臂架长度 /// public long BoomLength { get; set; } } }