步步为盈
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.7 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 VenderShopCategory:JdObject{
[JsonProperty("cid")]
public long
cid
{ get; set; }
[JsonProperty("vender_id")]
public long
venderId
{ get; set; }
[JsonProperty("shop_id")]
public long
shopId
{ get; set; }
[JsonProperty("parent_cid")]
public long
parentCid
{ get; set; }
[JsonProperty("order_no")]
public int
orderNo
{ get; set; }
[JsonProperty("name")]
public string
name
{ get; set; }
[JsonProperty("is_open")]
public bool
isOpen
{ get; set; }
[JsonProperty("is_home_show")]
public bool
isHomeShow
{ get; set; }
[JsonProperty("status")]
public int
status
{ get; set; }
[JsonProperty("create_time")]
public DateTime
createTime
{ get; set; }
[JsonProperty("modify_time")]
public DateTime
modifyTime
{ get; set; }
}
}