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.
57 lines
1.0 KiB
57 lines
1.0 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 PayoutDetailInfo:JdObject{
|
|
[JsonProperty("payoutDetailId")]
|
|
public int
|
|
|
|
payoutDetailId
|
|
{ get; set; }
|
|
[JsonProperty("orderPrice")]
|
|
public string
|
|
|
|
orderPrice
|
|
{ get; set; }
|
|
[JsonProperty("payoutPrice")]
|
|
public string
|
|
|
|
payoutPrice
|
|
{ get; set; }
|
|
[JsonProperty("payoutCount")]
|
|
public string
|
|
|
|
payoutCount
|
|
{ get; set; }
|
|
[JsonProperty("couponNum")]
|
|
public int
|
|
|
|
couponNum
|
|
{ get; set; }
|
|
[JsonProperty("couponCode")]
|
|
public string
|
|
|
|
couponCode
|
|
{ get; set; }
|
|
[JsonProperty("distributeStatus")]
|
|
public bool
|
|
|
|
distributeStatus
|
|
{ get; set; }
|
|
[JsonProperty("couponType")]
|
|
public int
|
|
|
|
couponType
|
|
{ get; set; }
|
|
[JsonProperty("couponTypeName")]
|
|
public string
|
|
|
|
couponTypeName
|
|
{ get; set; }
|
|
}
|
|
}
|
|
|