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

using System;
using System.Xml.Serialization;
using System.Collections.Generic;
using Newtonsoft.Json;
using Jd.Api.Domain;
namespace Jd.Api.Domain
{
[Serializable]
public class BeanAccountVo:JdObject{
[JsonProperty("accountCode")]
public string
accountCode
{ get; set; }
[JsonProperty("mainNum")]
public long
mainNum
{ get; set; }
[JsonProperty("accountType")]
public int
accountType
{ get; set; }
[JsonProperty("availableNum")]
public long
availableNum
{ get; set; }
[JsonProperty("freezeNum")]
public long
freezeNum
{ get; set; }
[JsonProperty("accountId")]
public long
accountId
{ get; set; }
[JsonProperty("modified")]
public DateTime
modified
{ get; set; }
[JsonProperty("subNum")]
public long
subNum
{ get; set; }
[JsonProperty("status")]
public int
status
{ get; set; }
[JsonProperty("created")]
public DateTime
created
{ get; set; }
[JsonProperty("creator")]
public string
creator
{ get; set; }
}
}