using System; using System.Xml.Serialization; using System.Collections.Generic; using Newtonsoft.Json; using Jd.Api.Domain; namespace Jd.Api.Domain { [Serializable] public class BookInfo:JdObject{ [JsonProperty("id")] public string id { get; set; } [JsonProperty("first_category")] public int firstCategory { get; set; } [JsonProperty("isbn")] public string isbn { get; set; } [JsonProperty("issn")] public string issn { get; set; } [JsonProperty("book_name")] public string bookName { get; set; } [JsonProperty("foreign_book_name")] public string foreignBookName { get; set; } [JsonProperty("language")] public string language { get; set; } [JsonProperty("author")] public string author { get; set; } [JsonProperty("editer")] public string editer { get; set; } [JsonProperty("proofreader")] public string proofreader { get; set; } [JsonProperty("remarker")] public string remarker { get; set; } [JsonProperty("transfer")] public string transfer { get; set; } [JsonProperty("drawer")] public string drawer { get; set; } [JsonProperty("publishers")] public string publishers { get; set; } [JsonProperty("publish_no")] public string publishNo { get; set; } [JsonProperty("series")] public string series { get; set; } [JsonProperty("brand")] public string brand { get; set; } [JsonProperty("format")] public string format { get; set; } [JsonProperty("packages")] public string packages { get; set; } [JsonProperty("pages")] public string pages { get; set; } [JsonProperty("batch_no")] public string batchNo { get; set; } [JsonProperty("publish_time")] public string publishTime { get; set; } [JsonProperty("print_no")] public int printNo { get; set; } [JsonProperty("print_time")] public string printTime { get; set; } [JsonProperty("size_and_height")] public string sizeAndHeight { get; set; } [JsonProperty("china_catalog")] public string chinaCatalog { get; set; } [JsonProperty("sheet")] public string sheet { get; set; } [JsonProperty("papers")] public string papers { get; set; } [JsonProperty("attachment")] public string attachment { get; set; } [JsonProperty("attachment_num")] public int attachmentNum { get; set; } [JsonProperty("pack_num")] public int packNum { get; set; } [JsonProperty("letters")] public int letters { get; set; } [JsonProperty("bar_code")] public string barCode { get; set; } [JsonProperty("keywords")] public string keywords { get; set; } [JsonProperty("pick_state")] public string pickState { get; set; } [JsonProperty("compile")] public string compile { get; set; } [JsonProperty("photography")] public string photography { get; set; } [JsonProperty("dictation")] public string dictation { get; set; } [JsonProperty("read")] public string read { get; set; } [JsonProperty("finishing")] public string finishing { get; set; } [JsonProperty("write")] public string write { get; set; } } }