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.

35 lines
1.0 KiB

using BBWYB.Server.Model.Db;
namespace BBWYB.Server.Model.Dto
{
public class PurchaserResponse : Purchaser
{
/// <summary>
/// 类目集合
/// </summary>
public IList<PurchaserExtendedInfoResponse> CategoryList { get; set; }
/// <summary>
/// 自定义标签集合
/// </summary>
public IList<PurchaserExtendedInfoResponse> TagList { get; set; }
/// <summary>
/// 最近30天具有采购行为的店铺SKU
/// </summary>
public IList<RecentPurchasedSkuResponse> Recent30dProductSku { get; set; }
/// <summary>
/// 采购金额容错字段
/// </summary>
public decimal? PurchaseAmount { get { return PurchasedAmount; } }
public PurchaserResponse()
{
CategoryList = new List<PurchaserExtendedInfoResponse>();
TagList = new List<PurchaserExtendedInfoResponse>();
Recent30dProductSku = new List<RecentPurchasedSkuResponse>();
}
}
}