lingling
2025-03-14 6b5c0022a6fdf5c3026650d231530ff6b32a72b4
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;
        }
    }
}