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 usePlatList { get; set; } [JsonProperty("platFormDesc")] public List 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; } } }