using System; using System.Xml.Serialization; using System.Collections.Generic; using Newtonsoft.Json; using Jd.Api.Domain; namespace Jd.Api.Domain { [Serializable] public class QueryOrderDetailJos:JdObject{ [JsonProperty("orderId")] public long orderId { get; set; } [JsonProperty("orderType")] public int orderType { get; set; } [JsonProperty("orderStatus")] public int orderStatus { get; set; } [JsonProperty("payStatus")] public int payStatus { get; set; } [JsonProperty("locked")] public int locked { get; set; } [JsonProperty("disputed")] public int disputed { get; set; } [JsonProperty("userPin")] public string userPin { get; set; } [JsonProperty("consignee")] public string consignee { get; set; } [JsonProperty("consigneeAddr")] public string consigneeAddr { get; set; } [JsonProperty("expressCorp")] public string expressCorp { get; set; } [JsonProperty("expressNo")] public string expressNo { get; set; } [JsonProperty("packageTrackInfo")] public string packageTrackInfo { get; set; } [JsonProperty("note")] public string note { get; set; } [JsonProperty("skuNum")] public int skuNum { get; set; } [JsonProperty("payTotalBuy")] public string payTotalBuy { get; set; } [JsonProperty("prdTotalBuy")] public string prdTotalBuy { get; set; } [JsonProperty("shipCostBuy")] public string shipCostBuy { get; set; } [JsonProperty("shipDisBuy")] public string shipDisBuy { get; set; } [JsonProperty("couponDisBuy")] public string couponDisBuy { get; set; } [JsonProperty("promDisBuy")] public string promDisBuy { get; set; } [JsonProperty("isDiscount")] public int isDiscount { get; set; } [JsonProperty("discountBuy")] public string discountBuy { get; set; } [JsonProperty("bookTime")] public DateTime bookTime { get; set; } [JsonProperty("payTime")] public DateTime payTime { get; set; } [JsonProperty("completeTime")] public DateTime completeTime { get; set; } [JsonProperty("shipTime")] public DateTime shipTime { get; set; } [JsonProperty("userIP")] public string userIP { get; set; } [JsonProperty("payType")] public int payType { get; set; } [JsonProperty("email")] public string email { get; set; } [JsonProperty("firstName")] public string firstName { get; set; } [JsonProperty("lastName")] public string lastName { get; set; } [JsonProperty("countryId")] public string countryId { get; set; } [JsonProperty("country")] public string country { get; set; } [JsonProperty("stateId")] public string stateId { get; set; } [JsonProperty("state")] public string state { get; set; } [JsonProperty("city")] public string city { get; set; } [JsonProperty("shipAddress1")] public string shipAddress1 { get; set; } [JsonProperty("shipAddress2")] public string shipAddress2 { get; set; } [JsonProperty("phone")] public string phone { get; set; } [JsonProperty("postCode")] public string postCode { get; set; } [JsonProperty("zip")] public string zip { get; set; } [JsonProperty("skus")] public List skus { get; set; } [JsonProperty("messegeCode")] public string messegeCode { get; set; } [JsonProperty("message")] public string message { get; set; } [JsonProperty("isSuccess")] public bool isSuccess { get; set; } [JsonProperty("desen_phone")] public string desenPhone { get; set; } } }