步步为盈
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.

68 lines
1.1 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 ShopCategory:JdObject{
[JsonProperty("id")]
public long[]
id
{ get; set; }
[JsonProperty("shopId")]
public long[]
shopId
{ get; set; }
[JsonProperty("parentId")]
public long[]
parentId
{ get; set; }
[JsonProperty("orderNo")]
public int[]
orderNo
{ get; set; }
[JsonProperty("title")]
public string
title
{ get; set; }
[JsonProperty("imgUri")]
public string
imgUri
{ get; set; }
[JsonProperty("open")]
public bool[]
open
{ get; set; }
[JsonProperty("status")]
public int[]
status
{ get; set; }
[JsonProperty("created")]
public DateTime
created
{ get; set; }
[JsonProperty("modified")]
public DateTime
modified
{ get; set; }
[JsonProperty("homeShow")]
public int[]
homeShow
{ get; set; }
}
}