4 changed files with 164 additions and 0 deletions
@ -0,0 +1,23 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
|
|||
namespace BBWY.Server.Model.Dto |
|||
{ |
|||
public class QueryOrderSkuRequest : ExportOrderSkuRequest |
|||
{ |
|||
public int PageIndex { get; set; } |
|||
|
|||
public int PageSize { get; set; } |
|||
} |
|||
|
|||
public class ExportOrderSkuRequest |
|||
{ |
|||
public List<long> ShopIds { get; set; } |
|||
|
|||
public Enums.Platform? PurchasePlatform { get; set; } |
|||
|
|||
public DateTime StartTime { get; set; } |
|||
|
|||
public DateTime EndTime { get; set; } |
|||
} |
|||
} |
@ -0,0 +1,39 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
|
|||
namespace BBWY.Server.Model.Dto |
|||
{ |
|||
public class ExportOrderSkuResponse |
|||
{ |
|||
public string OrderId { get; set; } |
|||
|
|||
public DateTime? StartTime { get; set; } |
|||
|
|||
public long ShopId { get; set; } |
|||
|
|||
public string ShopName { get; set; } |
|||
|
|||
public string Spu { get; set; } |
|||
|
|||
public string Sku { get; set; } |
|||
|
|||
public Enums.StorageType? StorageType { get; set; } |
|||
|
|||
public decimal? PurchaseSkuAmount { get; set; } |
|||
|
|||
public decimal? PurchaseFreight { get; set; } |
|||
|
|||
public decimal? SkuPrice { get; set; } |
|||
|
|||
public int? ItemTotal { get; set; } |
|||
|
|||
public string SpuName { get; set; } |
|||
} |
|||
|
|||
public class ExportOrderSkuListResponse |
|||
{ |
|||
public long Count { get; set; } |
|||
|
|||
public IList<ExportOrderSkuResponse> ItemList { get; set; } |
|||
} |
|||
} |
Loading…
Reference in new issue