using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Text; using Ubiety.Dns.Core.Common; namespace WMS.Web.Core.Dto.JuShuiTan { public class JuShuiTanInventoryResponse { /// /// 商品 /// [JsonProperty("sku_id")] public string sku_id { get; set; } [JsonProperty("wms_co_id")] public int wms_co_id { get; set; } /// /// 总量 /// [JsonProperty("qty")] public int? qty { get; set; } /// /// 可用数:可用数[同步线上的库存数]= /// 主仓实际库存-订单占有数+虚拟库存+采购在途(业务设置)+进货仓(业务设置)+销退仓库存(业务设置) /// [JsonProperty("ky_qty")] public int ky_qty { get; set; } /// /// 订单占有数 /// [JsonProperty("order_lock")] public int? order_lock { get; set; } /// /// 虚拟库存 /// [JsonProperty("virtual_qty")] public int? virtual_qty { get; set; } /// /// 采购在途 /// [JsonProperty("purchase_qty")] public int? purchase_qty { get; set; } /// /// 销退仓库存 /// [JsonProperty("return_qty")] public int? return_qty { get; set; } /// /// 进货仓 /// [JsonProperty("in_qty")] public int? in_qty { get; set; } } }