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.
67 lines
1.2 KiB
67 lines
1.2 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 FeeMo:JdObject{
|
|
[JsonProperty("detailId")]
|
|
public string
|
|
|
|
detailId
|
|
{ get; set; }
|
|
[JsonProperty("money")]
|
|
public string
|
|
|
|
money
|
|
{ get; set; }
|
|
[JsonProperty("direction")]
|
|
public int
|
|
|
|
direction
|
|
{ get; set; }
|
|
[JsonProperty("businessUuid")]
|
|
public string
|
|
|
|
businessUuid
|
|
{ get; set; }
|
|
[JsonProperty("billingRecordId")]
|
|
public long
|
|
|
|
billingRecordId
|
|
{ get; set; }
|
|
[JsonProperty("settlementRecordId")]
|
|
public long
|
|
|
|
settlementRecordId
|
|
{ get; set; }
|
|
[JsonProperty("currency")]
|
|
public string
|
|
|
|
currency
|
|
{ get; set; }
|
|
[JsonProperty("feeType")]
|
|
public int
|
|
|
|
feeType
|
|
{ get; set; }
|
|
[JsonProperty("settlementStatus")]
|
|
public int
|
|
|
|
settlementStatus
|
|
{ get; set; }
|
|
[JsonProperty("settlementTime")]
|
|
public DateTime
|
|
|
|
settlementTime
|
|
{ get; set; }
|
|
[JsonProperty("billNo")]
|
|
public string
|
|
|
|
billNo
|
|
{ get; set; }
|
|
}
|
|
}
|
|
|