步步为盈
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.3 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 BookBigFieldInfo:JdObject{
[JsonProperty("comments")]
public string
comments
{ get; set; }
[JsonProperty("image")]
public string
image
{ get; set; }
[JsonProperty("content_desc")]
public string
contentDesc
{ get; set; }
[JsonProperty("relatedProducts")]
public string
relatedProducts
{ get; set; }
[JsonProperty("editer_desc")]
public string
editerDesc
{ get; set; }
[JsonProperty("catalogue")]
public string
catalogue
{ get; set; }
[JsonProperty("book_abstract")]
public string
bookAbstract
{ get; set; }
[JsonProperty("authorDesc")]
public string
authorDesc
{ get; set; }
[JsonProperty("introduction")]
public string
introduction
{ get; set; }
[JsonProperty("productFeatures")]
public string
productFeatures
{ get; set; }
}
}