5 changed files with 92 additions and 0 deletions
@ -0,0 +1,26 @@ |
|||||
|
using System; |
||||
|
using System.Collections.Generic; |
||||
|
using System.Text; |
||||
|
|
||||
|
namespace BBWY.Server.Model.Dto |
||||
|
{ |
||||
|
public class SetSkuStockNumRequest : PlatformRequest |
||||
|
{ |
||||
|
public IList<SetSkuStockNumItemRequest> Items { get; set; } |
||||
|
} |
||||
|
|
||||
|
public class SetSkuStockNumItemRequest |
||||
|
{ |
||||
|
public string Sku { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 库存
|
||||
|
/// </summary>
|
||||
|
public int StockNum { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 仓库Id
|
||||
|
/// </summary>
|
||||
|
public int StoreId { get; set; } |
||||
|
} |
||||
|
} |
Loading…
Reference in new issue