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.
45 lines
1.2 KiB
45 lines
1.2 KiB
|
|
|
|
using BBWYB.Server.Model.Db;
|
|
|
|
namespace BBWYB.Server.Model.Dto
|
|
{
|
|
public class PurchaseSchemeResponse : PurchaseScheme
|
|
{
|
|
//public string PurchaserName { get; set; }
|
|
|
|
//public string PurchaserId2 { get; set; }
|
|
|
|
//public string PurchaserLocation { get; set; }
|
|
|
|
/// <summary>
|
|
/// 店铺SKU的最近采购成本(配件单价之和)
|
|
/// </summary>
|
|
public decimal? SkuLastPurchasePriceCost { get; set; }
|
|
|
|
/// <summary>
|
|
/// 店铺SKU的最近采购时间
|
|
/// </summary>
|
|
public DateTime? SkuLastPurchaseTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 近30天Spu销量
|
|
/// </summary>
|
|
public long? Recent30DaySpuItemCount { get; set; }
|
|
|
|
/// <summary>
|
|
/// 近30天Sku销量
|
|
/// </summary>
|
|
public long? Recent30DaySkuItemCount { get; set; }
|
|
|
|
public new List<PurchaseSchemeProductResponse> PurchaseSchemeProductList { get; set; }
|
|
|
|
public List<PurchaserResponse> PurchaserList { get; set; }
|
|
|
|
public PurchaseSchemeResponse()
|
|
{
|
|
PurchaseSchemeProductList = new List<PurchaseSchemeProductResponse>();
|
|
PurchaserList = new List<PurchaserResponse>();
|
|
}
|
|
}
|
|
}
|
|
|