You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

98 lines
1.9 KiB

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