27 lines
584 B
C#
27 lines
584 B
C#
using Newtonsoft.Json;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace WMS.Web.Core.Dto.LingXing
|
|
{
|
|
/// <summary>
|
|
/// 领星即时库存
|
|
/// </summary>
|
|
[Serializable]
|
|
public class LingXingInventoryRequest:LingXingRequest
|
|
{
|
|
/// <summary>
|
|
/// 仓库Id 1,3,234,33
|
|
/// </summary>
|
|
[JsonProperty("wid")]
|
|
public string wid { get; set; }
|
|
/// <summary>
|
|
/// 物料规格型号
|
|
/// </summary>
|
|
[JsonProperty("sku")]
|
|
public string sku { get; set; }
|
|
|
|
}
|
|
}
|