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.
62 lines
1.1 KiB
62 lines
1.1 KiB
using System;
|
|
using System.Xml.Serialization;
|
|
using System.Collections.Generic;
|
|
using Newtonsoft.Json;
|
|
using Jd.Api.Domain;
|
|
namespace Jd.Api.Domain
|
|
{
|
|
|
|
[Serializable]
|
|
public class StockDto:JdObject{
|
|
[JsonProperty("skuNo")]
|
|
public string
|
|
|
|
skuNo
|
|
{ get; set; }
|
|
[JsonProperty("skuName")]
|
|
public string
|
|
|
|
skuName
|
|
{ get; set; }
|
|
[JsonProperty("qty")]
|
|
public string
|
|
|
|
qty
|
|
{ get; set; }
|
|
[JsonProperty("canLocateQty")]
|
|
public string
|
|
|
|
canLocateQty
|
|
{ get; set; }
|
|
[JsonProperty("allQty")]
|
|
public string
|
|
|
|
allQty
|
|
{ get; set; }
|
|
[JsonProperty("ownerNo")]
|
|
public string
|
|
|
|
ownerNo
|
|
{ get; set; }
|
|
[JsonProperty("productLevel")]
|
|
public string
|
|
|
|
productLevel
|
|
{ get; set; }
|
|
[JsonProperty("productLevelName")]
|
|
public string
|
|
|
|
productLevelName
|
|
{ get; set; }
|
|
[JsonProperty("warehouseNo")]
|
|
public string
|
|
|
|
warehouseNo
|
|
{ get; set; }
|
|
[JsonProperty("tenantId")]
|
|
public string
|
|
|
|
tenantId
|
|
{ get; set; }
|
|
}
|
|
}
|
|
|