using System; using System.Xml.Serialization; using System.Collections.Generic; using Newtonsoft.Json; using Jd.Api.Domain; namespace Jd.Api.Domain { [Serializable] public class Customer:JdObject{ [JsonProperty("venderId")] public long venderId { get; set; } [JsonProperty("customerPin")] public string customerPin { get; set; } [JsonProperty("levelAtShop")] public string levelAtShop { get; set; } [JsonProperty("levelAtJd")] public string levelAtJd { get; set; } [JsonProperty("tradeCount")] public string tradeCount { get; set; } [JsonProperty("tradeAmount")] public string tradeAmount { get; set; } [JsonProperty("lastOrderDate")] public string lastOrderDate { get; set; } [JsonProperty("open_id_buyer")] public string openIdBuyer { get; set; } [JsonProperty("xid_buyer")] public string xidBuyer { get; set; } } }