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.
72 lines
1.4 KiB
72 lines
1.4 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 PointsDetailView:JdObject{
|
|
[JsonProperty("venderId")]
|
|
public long
|
|
|
|
venderId
|
|
{ get; set; }
|
|
[JsonProperty("customerPin")]
|
|
public string
|
|
|
|
customerPin
|
|
{ get; set; }
|
|
[JsonProperty("occurTime")]
|
|
public string
|
|
|
|
occurTime
|
|
{ get; set; }
|
|
[JsonProperty("businessId")]
|
|
public string
|
|
|
|
businessId
|
|
{ get; set; }
|
|
[JsonProperty("resId")]
|
|
public string
|
|
|
|
resId
|
|
{ get; set; }
|
|
[JsonProperty("points")]
|
|
public int
|
|
|
|
points
|
|
{ get; set; }
|
|
[JsonProperty("sourceType")]
|
|
public short
|
|
|
|
sourceType
|
|
{ get; set; }
|
|
[JsonProperty("msg")]
|
|
public string
|
|
|
|
msg
|
|
{ get; set; }
|
|
[JsonProperty("curPoints")]
|
|
public long
|
|
|
|
curPoints
|
|
{ get; set; }
|
|
[JsonProperty("sourceTypeName")]
|
|
public string
|
|
|
|
sourceTypeName
|
|
{ get; set; }
|
|
[JsonProperty("open_id_buyer")]
|
|
public string
|
|
|
|
openIdBuyer
|
|
{ get; set; }
|
|
[JsonProperty("xid_buyer")]
|
|
public string
|
|
|
|
xidBuyer
|
|
{ get; set; }
|
|
}
|
|
}
|
|
|