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.
102 lines
1.8 KiB
102 lines
1.8 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 PointsCouponInfoDTO:JdObject{
|
|
[JsonProperty("batchId")]
|
|
public long
|
|
|
|
batchId
|
|
{ get; set; }
|
|
[JsonProperty("batchKey")]
|
|
public string
|
|
|
|
batchKey
|
|
{ get; set; }
|
|
[JsonProperty("venderId")]
|
|
public long
|
|
|
|
venderId
|
|
{ get; set; }
|
|
[JsonProperty("create")]
|
|
public string
|
|
|
|
create
|
|
{ get; set; }
|
|
[JsonProperty("discount")]
|
|
public int
|
|
|
|
discount
|
|
{ get; set; }
|
|
[JsonProperty("condition")]
|
|
public int
|
|
|
|
condition
|
|
{ get; set; }
|
|
[JsonProperty("couponType")]
|
|
public int
|
|
|
|
couponType
|
|
{ get; set; }
|
|
[JsonProperty("points")]
|
|
public int
|
|
|
|
points
|
|
{ get; set; }
|
|
[JsonProperty("usePlatList")]
|
|
public List<string>
|
|
|
|
usePlatList
|
|
{ get; set; }
|
|
[JsonProperty("platFormDesc")]
|
|
public List<string>
|
|
|
|
platFormDesc
|
|
{ get; set; }
|
|
[JsonProperty("period")]
|
|
public int
|
|
|
|
period
|
|
{ get; set; }
|
|
[JsonProperty("sendCount")]
|
|
public int
|
|
|
|
sendCount
|
|
{ get; set; }
|
|
[JsonProperty("tradeCount")]
|
|
public int
|
|
|
|
tradeCount
|
|
{ get; set; }
|
|
[JsonProperty("remainingCount")]
|
|
public int
|
|
|
|
remainingCount
|
|
{ get; set; }
|
|
[JsonProperty("fullPlat")]
|
|
public int
|
|
|
|
fullPlat
|
|
{ get; set; }
|
|
[JsonProperty("activityStartTime")]
|
|
public string
|
|
|
|
activityStartTime
|
|
{ get; set; }
|
|
[JsonProperty("activityEndTime")]
|
|
public string
|
|
|
|
activityEndTime
|
|
{ get; set; }
|
|
[JsonProperty("realCouponId")]
|
|
public long
|
|
|
|
realCouponId
|
|
{ get; set; }
|
|
}
|
|
}
|
|
|