zhengyiming
2025-04-16 52279134e7fb09d1493561e80793e0da1d95dd41
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
using Newtonsoft.Json;
 
namespace LifePayment.Domain
{
    public class FundAccountBookQueryInput
    {
        /// <summary>
        /// 商户会员的唯一标识,如果传入account_book_id此字段必传并比对一致性。
        /// </summary>
        [JsonProperty("merchant_user_id", NullValueHandling = NullValueHandling.Ignore)]
        public string MerchantUserId
        {
            get;
            set;
        }
 
        /// <summary>
        /// 资金记账本的开通场景码 :SATF_FUND_BOOK
        /// </summary>
        [JsonProperty("scene_code", NullValueHandling = NullValueHandling.Ignore)]
        public string SceneCode
        {
            get;
            set;
        }
 
        /// <summary>
        /// 记账账簿id
        /// </summary>
        [JsonProperty("account_book_id", NullValueHandling = NullValueHandling.Ignore)]
        public string AccountBookId
        {
            get;
            set;
        }
 
        /// <summary>
        /// JSON格式,传递业务扩展参数 :{"agreement_no":"2019000000000"}
        /// </summary>
        [JsonProperty("ext_info", NullValueHandling = NullValueHandling.Ignore)]
        public string ExtInfo
        {
            get;
            set;
        }
    }
}