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.5 KiB
62 lines
1.5 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 ExtPropValueDto:JdObject{
|
|
[JsonProperty("value_id")]
|
|
public int
|
|
|
|
valueId
|
|
{ get; set; }
|
|
[JsonProperty("att_id")]
|
|
public int
|
|
|
|
attId
|
|
{ get; set; }
|
|
[JsonProperty("value_name")]
|
|
public string
|
|
|
|
valueName
|
|
{ get; set; }
|
|
[JsonProperty("type")]
|
|
public int
|
|
|
|
type
|
|
{ get; set; }
|
|
[JsonProperty("yn")]
|
|
public int
|
|
|
|
yn
|
|
{ get; set; }
|
|
[JsonProperty("brand_prx")]
|
|
public string
|
|
|
|
brandPrx
|
|
{ get; set; }
|
|
[JsonProperty("sort")]
|
|
public int
|
|
|
|
sort
|
|
{ get; set; }
|
|
[JsonProperty("grade_avg")]
|
|
public int
|
|
|
|
gradeAvg
|
|
{ get; set; }
|
|
[JsonProperty("remarks")]
|
|
public string
|
|
|
|
remarks
|
|
{ get; set; }
|
|
[JsonProperty("is_required")]
|
|
public int
|
|
|
|
isRequired
|
|
{ get; set; }
|
|
}
|
|
}
|
|
|