步步为盈
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.

92 lines
1.7 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 PointsExchangeGiftSkuDTO:JdObject{
[JsonProperty("id")]
public long
id
{ get; set; }
[JsonProperty("activityEndTime")]
public DateTime
activityEndTime
{ get; set; }
[JsonProperty("activityPrice")]
public string
activityPrice
{ get; set; }
[JsonProperty("activityStartTime")]
public DateTime
activityStartTime
{ get; set; }
[JsonProperty("activityStatus")]
public int
activityStatus
{ get; set; }
[JsonProperty("createTime")]
public DateTime
createTime
{ get; set; }
[JsonProperty("hasExchange")]
public bool
hasExchange
{ get; set; }
[JsonProperty("hasConsume")]
public bool
hasConsume
{ get; set; }
[JsonProperty("points")]
public int
points
{ get; set; }
[JsonProperty("pointsExchangeGiftId")]
public long
pointsExchangeGiftId
{ get; set; }
[JsonProperty("promoId")]
public long
promoId
{ get; set; }
[JsonProperty("promoStatus")]
public int
promoStatus
{ get; set; }
[JsonProperty("skuId")]
public long
skuId
{ get; set; }
[JsonProperty("updateTime")]
public DateTime
updateTime
{ get; set; }
[JsonProperty("venderId")]
public long
venderId
{ get; set; }
[JsonProperty("wareId")]
public long
wareId
{ get; set; }
}
}