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.
98 lines
2.0 KiB
98 lines
2.0 KiB
3 years ago
|
using System;
|
||
|
using System.Xml.Serialization;
|
||
|
using System.Collections.Generic;
|
||
|
using Newtonsoft.Json;
|
||
|
using Jd.Api.Domain;
|
||
|
namespace Jd.Api.Domain
|
||
|
{
|
||
|
|
||
|
[Serializable]
|
||
|
public class MemberLevelInfoDTO:JdObject{
|
||
|
[JsonProperty("levelAtShop")]
|
||
|
public int
|
||
|
|
||
|
levelAtShop
|
||
|
{ get; set; }
|
||
|
[JsonProperty("avgOrderPrice")]
|
||
|
public long
|
||
|
|
||
|
avgOrderPrice
|
||
|
{ get; set; }
|
||
|
[JsonProperty("refundOrderCount")]
|
||
|
public long
|
||
|
|
||
|
refundOrderCount
|
||
|
{ get; set; }
|
||
|
[JsonProperty("totalGoodsCount")]
|
||
|
public long
|
||
|
|
||
|
totalGoodsCount
|
||
|
{ get; set; }
|
||
|
[JsonProperty("changedOrderCount")]
|
||
|
public long
|
||
|
|
||
|
changedOrderCount
|
||
|
{ get; set; }
|
||
|
[JsonProperty("customerPin")]
|
||
|
public string
|
||
|
|
||
|
customerPin
|
||
|
{ get; set; }
|
||
|
[JsonProperty("canceledOrderCount")]
|
||
|
public long
|
||
|
|
||
|
canceledOrderCount
|
||
|
{ get; set; }
|
||
|
[JsonProperty("refundOrderPrice")]
|
||
|
public long
|
||
|
|
||
|
refundOrderPrice
|
||
|
{ get; set; }
|
||
|
[JsonProperty("venderId")]
|
||
|
public long
|
||
|
|
||
|
venderId
|
||
|
{ get; set; }
|
||
|
[JsonProperty("levelAtShopName")]
|
||
|
public string
|
||
|
|
||
|
levelAtShopName
|
||
|
{ get; set; }
|
||
|
[JsonProperty("totalOrderPrice")]
|
||
|
public long
|
||
|
|
||
|
totalOrderPrice
|
||
|
{ get; set; }
|
||
|
[JsonProperty("totalOrderCount")]
|
||
|
public long
|
||
|
|
||
|
totalOrderCount
|
||
|
{ get; set; }
|
||
|
[JsonProperty("nickName")]
|
||
|
public string
|
||
|
|
||
|
nickName
|
||
|
{ get; set; }
|
||
|
[JsonProperty("bindingTime")]
|
||
|
public string
|
||
|
|
||
|
bindingTime
|
||
|
{ get; set; }
|
||
|
[JsonProperty("bindingType")]
|
||
|
public int
|
||
|
|
||
|
bindingType
|
||
|
{ get; set; }
|
||
|
[JsonProperty("open_id_buyer")]
|
||
|
public string
|
||
|
|
||
|
openIdBuyer
|
||
|
{ get; set; }
|
||
|
[JsonProperty("xid_buyer")]
|
||
|
public string
|
||
|
|
||
|
xidBuyer
|
||
|
{ get; set; }
|
||
|
}
|
||
|
}
|