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