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

69 lines
1.1 KiB

using Newtonsoft.Json;
using System;
namespace Jd.Api.Domain
{
[Serializable]
public class BrandVo:JdObject{
[JsonProperty("id")]
public int
id
{ get; set; }
[JsonProperty("brandId")]
public int
brandId
{ get; set; }
[JsonProperty("brandName")]
public string
brandName
{ get; set; }
[JsonProperty("cnName")]
public string
cnName
{ get; set; }
[JsonProperty("enName")]
public string
enName
{ get; set; }
[JsonProperty("logo")]
public string
logo
{ get; set; }
[JsonProperty("firstChar")]
public string
firstChar
{ get; set; }
[JsonProperty("endTime")]
public DateTime
endTime
{ get; set; }
[JsonProperty("isForever")]
public int
isForever
{ get; set; }
[JsonProperty("status")]
public int
status
{ get; set; }
[JsonProperty("created")]
public DateTime
created
{ get; set; }
[JsonProperty("modified")]
public DateTime
modified
{ get; set; }
}
}