ipo
zyy
2025-12-30 e9520b1f4906738caddd3a6193159fc858d23ce8
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
package com.yami.trading.bean.model;
 
import com.baomidou.mybatisplus.annotation.*;
import com.yami.trading.common.domain.BaseEntity;
import com.yami.trading.common.domain.UUIDEntity;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.Date;
 
@Data
@TableName("t_c2c_payment_method")
public class C2cPaymentMethod  extends UUIDEntity {
    private static final long serialVersionUID = -1883480204147696409L;
    /**
     * 1 银行卡  2 c2c
     */
    private int type;
 
    /**
     * 用户PARTY_ID
     */
    private String partyId;
 
    /**
     * 支付方式模板ID
     */
    private String methodConfigId;
 
    /**
     * 支付方式类型:0其它/1银行卡/2虚拟货币/3微信/4支付宝/5PayPal/6西联汇款/7SWIFT国际汇款
     * 参考枚举类型: PayMethodTypeEnum
     */
    private int methodType;
 
    /**
     * 支付方式类型名称
     */
    @TableField(exist = false)
    private String methodTypeName;
 
    /**
     * 支付方式名称
     */
    private String methodName;
 
    /**
     * 支付方式图片
     */
    private String methodImg;
 
    /**
     * 承兑商真实姓名
     */
    private String realName;
 
    /**
     * 参数名1
     */
    private String paramName1;
 
    /**
     * 参数值1
     */
    private String paramValue1;
 
    /**
     * 参数名2
     */
    private String paramName2;
 
    /**
     * 参数值2
     */
    private String paramValue2;
 
    /**
     * 参数名3
     */
    private String paramName3;
 
    /**
     * 参数值3
     */
    private String paramValue3;
 
    /**
     * 参数名4
     */
    private String paramName4;
 
    /**
     * 参数值4
     */
    private String paramValue4;
 
    /**
     * 参数名5
     */
    private String paramName5;
 
    /**
     * 参数值5
     */
    private String paramValue5;
 
    /**
     * 参数名6
     */
    private String paramName6;
 
    /**
     * 参数值6
     */
    private String paramValue6;
 
    /**
     * 参数名7
     */
    private String paramName7;
 
    /**
     * 参数值7
     */
    private String paramValue7;
 
    /**
     * 参数名8
     */
    private String paramName8;
 
    /**
     * 参数值8
     */
    private String paramValue8;
 
    /**
     * 参数名9
     */
    private String paramName9;
 
    /**
     * 参数值9
     */
    private String paramValue9;
 
    /**
     * 参数名10
     */
    private String paramName10;
 
    /**
     * 参数值10
     */
    private String paramValue10;
 
    /**
     * 参数名11
     */
    private String paramName11;
 
    /**
     * 参数值11
     */
    private String paramValue11;
 
    /**
     * 参数名12
     */
    private String paramName12;
 
    /**
     * 参数值12
     */
    private String paramValue12;
 
    /**
     * 参数名13
     */
    private String paramName13;
 
    /**
     * 参数值13
     */
    private String paramValue13;
 
    /**
     * 参数名14
     */
    private String paramName14;
 
    /**
     * 参数值14
     */
    private String paramValue14;
 
    /**
     * 参数名15
     */
    private String paramName15;
 
    /**
     * 参数值15
     */
    private String paramValue15;
 
    /**
     * 支付二维码
     */
    private String qrcode;
 
    private String remark;
 
    @TableField(fill = FieldFill.INSERT)
    private Date createTime;
 
    @TableField(fill = FieldFill.UPDATE)
    private Date updateTime;
 
    @TableField(exist = false)
    private  String qrcodePath;
 
}