admin
2022-03-29 fac5d01bfcddfc8edef0a5fd3d401b1fe383fe16
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
package org.yeshi.utils.entity.alipay;
 
public class AlipayTransferAccount {
 
    private String account;
    private String name;
    private String userId;
 
    public AlipayTransferAccount(String userId) {
        this.userId = userId;
    }
 
    public AlipayTransferAccount(String name, String account) {
        this.name = name;
        this.account = account;
    }
 
 
    public String getAccount() {
        return account;
    }
 
    public void setAccount(String account) {
        this.account = account;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public String getUserId() {
        return userId;
    }
 
    public void setUserId(String userId) {
        this.userId = userId;
    }
}