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.
57 lines
1.1 KiB
57 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 CategoryAttrJos:JdObject{
|
|
[JsonProperty("categoryAttrId")]
|
|
public long
|
|
|
|
categoryAttrId
|
|
{ get; set; }
|
|
[JsonProperty("categoryId")]
|
|
public long
|
|
|
|
categoryId
|
|
{ get; set; }
|
|
[JsonProperty("attName")]
|
|
public string
|
|
|
|
attName
|
|
{ get; set; }
|
|
[JsonProperty("attrIndexId")]
|
|
public int
|
|
|
|
attrIndexId
|
|
{ get; set; }
|
|
[JsonProperty("inputType")]
|
|
public int
|
|
|
|
inputType
|
|
{ get; set; }
|
|
[JsonProperty("attributeType")]
|
|
public int
|
|
|
|
attributeType
|
|
{ get; set; }
|
|
[JsonProperty("attrFeatures")]
|
|
public List<string>
|
|
|
|
attrFeatures
|
|
{ get; set; }
|
|
[JsonProperty("categoryAttrGroup")]
|
|
public CategoryAttrGroupJos
|
|
|
|
categoryAttrGroup
|
|
{ get; set; }
|
|
[JsonProperty("attrValueList")]
|
|
public List<string>
|
|
|
|
attrValueList
|
|
{ get; set; }
|
|
}
|
|
}
|
|
|