6 changed files with 88 additions and 0 deletions
@ -0,0 +1,12 @@ |
|||||
|
namespace BBWY.Client.Models |
||||
|
{ |
||||
|
public class SkuRecentSaleResponse |
||||
|
{ |
||||
|
public string SkuId { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 销量
|
||||
|
/// </summary>
|
||||
|
public decimal SaleCount { get; set; } |
||||
|
} |
||||
|
} |
@ -0,0 +1,13 @@ |
|||||
|
using System; |
||||
|
using System.Collections.Generic; |
||||
|
using System.Text; |
||||
|
|
||||
|
namespace BBWY.Server.Model.Dto |
||||
|
{ |
||||
|
|
||||
|
public class SkuRecentSalesRequest |
||||
|
{ |
||||
|
public long ShopId { get; set; } |
||||
|
public IList<string> SkuIds { get; set; } |
||||
|
} |
||||
|
} |
@ -0,0 +1,16 @@ |
|||||
|
using System; |
||||
|
using System.Collections.Generic; |
||||
|
using System.Text; |
||||
|
|
||||
|
namespace BBWY.Server.Model.Dto |
||||
|
{ |
||||
|
public class SkuRecentSaleResponse |
||||
|
{ |
||||
|
public string SkuId { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 销量
|
||||
|
/// </summary>
|
||||
|
public decimal SaleCount { get; set; } |
||||
|
} |
||||
|
} |
Loading…
Reference in new issue