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

167 lines
3.4 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 CouponDetailVo:JdObject{
[JsonProperty("promotionList")]
public List<string>
promotionList
{ get; set; }
[JsonProperty("couponList")]
public List<string>
couponList
{ get; set; }
[JsonProperty("skuList")]
public List<string>
skuList
{ get; set; }
[JsonProperty("totalItemPrice")]
public string
totalItemPrice
{ get; set; }
[JsonProperty("totalBaseDiscount")]
public string
totalBaseDiscount
{ get; set; }
[JsonProperty("totalManJian")]
public string
totalManJian
{ get; set; }
[JsonProperty("totalVenderFee")]
public string
totalVenderFee
{ get; set; }
[JsonProperty("totalBaseFee")]
public string
totalBaseFee
{ get; set; }
[JsonProperty("totalRemoteFee")]
public string
totalRemoteFee
{ get; set; }
[JsonProperty("totalCoupon")]
public string
totalCoupon
{ get; set; }
[JsonProperty("totalJingDou")]
public string
totalJingDou
{ get; set; }
[JsonProperty("totalBalance")]
public string
totalBalance
{ get; set; }
[JsonProperty("totalSuperRedEnvelope")]
public string
totalSuperRedEnvelope
{ get; set; }
[JsonProperty("totalPlus95")]
public string
totalPlus95
{ get; set; }
[JsonProperty("totalTuiHuanHuoWuYou")]
public string
totalTuiHuanHuoWuYou
{ get; set; }
[JsonProperty("totalTaxFee")]
public string
totalTaxFee
{ get; set; }
[JsonProperty("totalLuoDiPeiService")]
public string
totalLuoDiPeiService
{ get; set; }
[JsonProperty("totalShouldPay")]
public string
totalShouldPay
{ get; set; }
[JsonProperty("orderId")]
public long
orderId
{ get; set; }
[JsonProperty("orderCreateDate")]
public DateTime
orderCreateDate
{ get; set; }
[JsonProperty("totalJingQuan")]
public string
totalJingQuan
{ get; set; }
[JsonProperty("totalDongQuan")]
public string
totalDongQuan
{ get; set; }
[JsonProperty("totalXianPinLeiJingQuan")]
public string
totalXianPinLeiJingQuan
{ get; set; }
[JsonProperty("totalXianPinLeiDongQuan")]
public string
totalXianPinLeiDongQuan
{ get; set; }
[JsonProperty("totalPingTaiChengDanYouHuiQuan")]
public string
totalPingTaiChengDanYouHuiQuan
{ get; set; }
[JsonProperty("totalLiJinYouHui")]
public string
totalLiJinYouHui
{ get; set; }
[JsonProperty("totalZhiFuYingXiaoYouHui")]
public string
totalZhiFuYingXiaoYouHui
{ get; set; }
[JsonProperty("totalJdZhiFuYouHui")]
public string
totalJdZhiFuYouHui
{ get; set; }
[JsonProperty("totalGlobalGeneralTax")]
public string
totalGlobalGeneralTax
{ get; set; }
[JsonProperty("totalGlobalGeneralIncludeTax")]
public string
totalGlobalGeneralIncludeTax
{ get; set; }
[JsonProperty("totalJingXiangLiJin")]
public string
totalJingXiangLiJin
{ get; set; }
}
}