using Newtonsoft.Json;
|
using System.ComponentModel.DataAnnotations;
|
|
namespace LifePayment.Domain
|
{
|
public class FundAccountQueryInput
|
{
|
/// <summary>
|
/// 蚂蚁统一会员ID
|
/// </summary>
|
[JsonProperty("alipay_user_id", NullValueHandling = NullValueHandling.Ignore)]
|
[Required]
|
public string AlipayUserId
|
{
|
set;
|
get;
|
}
|
|
/// <summary>
|
/// 查询的账号类型,查询余额账户值为ACCTRANS_ACCOUNT。必填。
|
/// </summary>
|
[JsonProperty("account_type", NullValueHandling = NullValueHandling.Ignore)]
|
public string AccountType
|
{
|
set;
|
get;
|
}
|
}
|
}
|