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.
67 lines
1.2 KiB
67 lines
1.2 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 SpWorkOrderItemDto:JdObject{
|
|
[JsonProperty("skuName")]
|
|
public string
|
|
|
|
skuName
|
|
{ get; set; }
|
|
[JsonProperty("categoryId1")]
|
|
public long
|
|
|
|
categoryId1
|
|
{ get; set; }
|
|
[JsonProperty("category2")]
|
|
public string
|
|
|
|
category2
|
|
{ get; set; }
|
|
[JsonProperty("categoryId2")]
|
|
public long
|
|
|
|
categoryId2
|
|
{ get; set; }
|
|
[JsonProperty("brandId")]
|
|
public long
|
|
|
|
brandId
|
|
{ get; set; }
|
|
[JsonProperty("category1")]
|
|
public string
|
|
|
|
category1
|
|
{ get; set; }
|
|
[JsonProperty("category")]
|
|
public string
|
|
|
|
category
|
|
{ get; set; }
|
|
[JsonProperty("brand")]
|
|
public string
|
|
|
|
brand
|
|
{ get; set; }
|
|
[JsonProperty("skuId")]
|
|
public long
|
|
|
|
skuId
|
|
{ get; set; }
|
|
[JsonProperty("skuNum")]
|
|
public int
|
|
|
|
skuNum
|
|
{ get; set; }
|
|
[JsonProperty("categoryId")]
|
|
public long
|
|
|
|
categoryId
|
|
{ get; set; }
|
|
}
|
|
}
|
|
|