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.
107 lines
1.8 KiB
107 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 GiftRuleActivity:JdObject{
|
|
[JsonProperty("batchKey")]
|
|
public string
|
|
|
|
batchKey
|
|
{ get; set; }
|
|
[JsonProperty("prizeStartTime")]
|
|
public DateTime
|
|
|
|
prizeStartTime
|
|
{ get; set; }
|
|
[JsonProperty("collectTimes")]
|
|
public long
|
|
|
|
collectTimes
|
|
{ get; set; }
|
|
[JsonProperty("prizeType")]
|
|
public int
|
|
|
|
prizeType
|
|
{ get; set; }
|
|
[JsonProperty("venderId")]
|
|
public long
|
|
|
|
venderId
|
|
{ get; set; }
|
|
[JsonProperty("discount")]
|
|
public long
|
|
|
|
discount
|
|
{ get; set; }
|
|
[JsonProperty("couponId")]
|
|
public long
|
|
|
|
couponId
|
|
{ get; set; }
|
|
[JsonProperty("skuIds")]
|
|
public string
|
|
|
|
skuIds
|
|
{ get; set; }
|
|
[JsonProperty("sendCount")]
|
|
public long
|
|
|
|
sendCount
|
|
{ get; set; }
|
|
[JsonProperty("prizeId")]
|
|
public long
|
|
|
|
prizeId
|
|
{ get; set; }
|
|
[JsonProperty("activityId")]
|
|
public long
|
|
|
|
activityId
|
|
{ get; set; }
|
|
[JsonProperty("prizeLevel")]
|
|
public int
|
|
|
|
prizeLevel
|
|
{ get; set; }
|
|
[JsonProperty("quota")]
|
|
public int
|
|
|
|
quota
|
|
{ get; set; }
|
|
[JsonProperty("prizeEndTime")]
|
|
public DateTime
|
|
|
|
prizeEndTime
|
|
{ get; set; }
|
|
[JsonProperty("validateDay")]
|
|
public int
|
|
|
|
validateDay
|
|
{ get; set; }
|
|
[JsonProperty("drawCount")]
|
|
public long
|
|
|
|
drawCount
|
|
{ get; set; }
|
|
[JsonProperty("id")]
|
|
public long
|
|
|
|
id
|
|
{ get; set; }
|
|
[JsonProperty("status")]
|
|
public int
|
|
|
|
status
|
|
{ get; set; }
|
|
[JsonProperty("desc")]
|
|
public string
|
|
|
|
desc
|
|
{ get; set; }
|
|
}
|
|
}
|
|
|