zhengyuxuan
2025-04-02 e7d1ef3eef4dcbec4f7fae27542e94cc0bbf89c8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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;
        }
    }
}