using System; using System.Xml.Serialization; using System.Collections.Generic; using Newtonsoft.Json; using Jd.Api.Domain; namespace Jd.Api.Domain { [Serializable] public class JpassCouponInfoDTO:JdObject{ [JsonProperty("couponNum")] public long couponNum { get; set; } [JsonProperty("couponName")] public string couponName { get; set; } [JsonProperty("coverImg")] public string coverImg { get; set; } [JsonProperty("endDate")] public DateTime endDate { get; set; } [JsonProperty("storeCount")] public int storeCount { get; set; } [JsonProperty("couponId")] public long couponId { get; set; } [JsonProperty("sellType")] public int sellType { get; set; } [JsonProperty("activityId")] public long activityId { get; set; } [JsonProperty("couponAmount")] public long couponAmount { get; set; } [JsonProperty("effectiveType")] public int effectiveType { get; set; } [JsonProperty("couponType")] public int couponType { get; set; } [JsonProperty("perCoupon")] public int perCoupon { get; set; } [JsonProperty("quota")] public long quota { get; set; } [JsonProperty("notice")] public string notice { get; set; } [JsonProperty("couponPutNum")] public long couponPutNum { get; set; } [JsonProperty("storeId")] public long storeId { get; set; } [JsonProperty("auditStatus")] public int auditStatus { get; set; } [JsonProperty("startPutDate")] public DateTime startPutDate { get; set; } [JsonProperty("startDate")] public DateTime startDate { get; set; } [JsonProperty("putStatus")] public int putStatus { get; set; } [JsonProperty("auditOpinion")] public string auditOpinion { get; set; } [JsonProperty("skuCount")] public int skuCount { get; set; } [JsonProperty("putStatusStr")] public string putStatusStr { get; set; } } }