zhengyuxuan
2025-04-03 84f97d1b0b2cbf157dea598363e4cfcf8c15348a
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
48
49
50
51
52
53
54
55
56
57
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace LifePayment.Domain
{
    public class FundAccountbookCreateInput
    {
        /// <summary>
        /// 外部商户系统会员的唯一标识,自定义传入
        /// </summary>
        [JsonProperty("merchant_user_id", NullValueHandling = NullValueHandling.Ignore)]
        [Required]
        public string MerchantUserId
        {
            get;
            set;
        }
 
        /// <summary>
        /// 外部商户用户类型:BUSINESS_EMPLOYEE
        /// </summary>
        [JsonProperty("merchant_user_type", NullValueHandling = NullValueHandling.Ignore)]
        [Required]
        public string MerchantUserType
        {
            get;
            set;
        }
 
        /// <summary>
        /// 资金记账本的业务场景
        /// </summary>
        [JsonProperty("scene_code", NullValueHandling = NullValueHandling.Ignore)]
        [Required]
        public string SceneCode
        {
            get;
            set;
        }
 
        /// <summary>
        /// JSON格式,传递业务扩展参数
        /// </summary>
        [JsonProperty("ext_info", NullValueHandling = NullValueHandling.Ignore)]
        [Required]
        public string ExtInfo
        {
            get;
            set;
        }
    }
}