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.
57 lines
1.2 KiB
57 lines
1.2 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 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; }
|
|
}
|
|
}
|
|
|