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.
27 lines
555 B
27 lines
555 B
1 year ago
|
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; }
|
||
|
}
|
||
|
}
|