using Znyc.CloudCar.Model.Dtos.EquipmentPicture;
namespace Znyc.CloudCar.Model.Dtos.Equipment
{
///
/// 卖家主页输出实体
///
public class SellerEquipmentOutput
{
public SellerOutput Seller { get; set; }
public List SellerEquipmentList { get; set; }
public long Total { get; set; }
}
public class SellerOutput
{
///
/// 姓名
///
public string UserName { get; set; }
///
/// 头像
///
public string AvatarUrl { get; set; }
///
/// 是否是会员
///
public bool IsMember { get; set; }
}
public class SellerEquipmentListOutput
{
public long Id { get; set; }
public long UserId { 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 string RefreshDateTime { get; set; }
}
}