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.
63 lines
1.1 KiB
63 lines
1.1 KiB
3 years ago
|
using System;
|
||
|
using System.Xml.Serialization;
|
||
|
using System.Collections.Generic;
|
||
|
using Newtonsoft.Json;
|
||
|
using Jd.Api.Domain;
|
||
|
namespace Jd.Api.Domain
|
||
|
{
|
||
|
|
||
|
[Serializable]
|
||
|
public class FeeAccountResult:JdObject{
|
||
|
[JsonProperty("deptNo")]
|
||
|
public string
|
||
|
|
||
|
deptNo
|
||
|
{ get; set; }
|
||
|
[JsonProperty("accountNo")]
|
||
|
public string
|
||
|
|
||
|
accountNo
|
||
|
{ get; set; }
|
||
|
[JsonProperty("incomePayoutFlag")]
|
||
|
public int[]
|
||
|
|
||
|
incomePayoutFlag
|
||
|
{ get; set; }
|
||
|
[JsonProperty("settlementTarget")]
|
||
|
public int[]
|
||
|
|
||
|
settlementTarget
|
||
|
{ get; set; }
|
||
|
[JsonProperty("settlementPerson")]
|
||
|
public string
|
||
|
|
||
|
settlementPerson
|
||
|
{ get; set; }
|
||
|
[JsonProperty("settlementPersonName")]
|
||
|
public string
|
||
|
|
||
|
settlementPersonName
|
||
|
{ get; set; }
|
||
|
[JsonProperty("accountDay")]
|
||
|
public DateTime
|
||
|
|
||
|
accountDay
|
||
|
{ get; set; }
|
||
|
[JsonProperty("amount")]
|
||
|
public string
|
||
|
|
||
|
amount
|
||
|
{ get; set; }
|
||
|
[JsonProperty("status")]
|
||
|
public int[]
|
||
|
|
||
|
status
|
||
|
{ get; set; }
|
||
|
[JsonProperty("totalRecord")]
|
||
|
public int[]
|
||
|
|
||
|
totalRecord
|
||
|
{ get; set; }
|
||
|
}
|
||
|
}
|