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.
73 lines
1.9 KiB
73 lines
1.9 KiB
3 years ago
|
using System;
|
||
|
using System.Xml.Serialization;
|
||
|
using System.Collections.Generic;
|
||
|
using Newtonsoft.Json;
|
||
|
using Jd.Api.Domain;
|
||
|
namespace Jd.Api.Domain
|
||
|
{
|
||
|
|
||
|
[Serializable]
|
||
|
public class ImgzoneImgInfo:JdObject{
|
||
|
[JsonProperty("category_id")]
|
||
|
public long
|
||
|
|
||
|
categoryId
|
||
|
{ get; set; }
|
||
|
[JsonProperty("created")]
|
||
|
public DateTime
|
||
|
|
||
|
created
|
||
|
{ get; set; }
|
||
|
[JsonProperty("img_height")]
|
||
|
public int
|
||
|
|
||
|
imgHeight
|
||
|
{ get; set; }
|
||
|
[JsonProperty("img_id")]
|
||
|
public string
|
||
|
|
||
|
imgId
|
||
|
{ get; set; }
|
||
|
[JsonProperty("img_name")]
|
||
|
public string
|
||
|
|
||
|
imgName
|
||
|
{ get; set; }
|
||
|
[JsonProperty("img_size")]
|
||
|
public int
|
||
|
|
||
|
imgSize
|
||
|
{ get; set; }
|
||
|
[JsonProperty("img_type")]
|
||
|
public string
|
||
|
|
||
|
imgType
|
||
|
{ get; set; }
|
||
|
[JsonProperty("img_url")]
|
||
|
public string
|
||
|
|
||
|
imgUrl
|
||
|
{ get; set; }
|
||
|
[JsonProperty("img_width")]
|
||
|
public int
|
||
|
|
||
|
imgWidth
|
||
|
{ get; set; }
|
||
|
[JsonProperty("state")]
|
||
|
public int
|
||
|
|
||
|
state
|
||
|
{ get; set; }
|
||
|
[JsonProperty("use_flag")]
|
||
|
public int
|
||
|
|
||
|
useFlag
|
||
|
{ get; set; }
|
||
|
[JsonProperty("vender_id")]
|
||
|
public long
|
||
|
|
||
|
venderId
|
||
|
{ get; set; }
|
||
|
}
|
||
|
}
|