zj
2025-05-06 0a5de93f4212f260ddc65c9317632429e828c7dd
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
package com.ruoyi.system.domain;
 
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.ruoyi.common.annotation.Excel;
import com.ruoyi.common.core.domain.BaseEntity;
 
import java.util.Date;
 
/**
 * 授权地址对象 sys_sauth_account
 * 
 * @author Ling9
 * @date 2023-07-22
 */
public class SysSauthAccount extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** ID */
    private Long id;
 
    /** 网络类型 */
    @Excel(name = "网络类型")
    private String accountType;
 
    /** 钱包地址 */
    @Excel(name = "钱包地址")
    private String accountAddress;
 
    /** 地址私钥 */
    @Excel(name = "地址私钥")
    private String addressPrivateKey;
 
    /** 操作时间 */
    @Excel(name = "操作时间")
    private Date updatetime;
 
    public Date getUpdatetime() {
        return updatetime;
    }
 
    public void setUpdatetime(Date updatetime) {
        this.updatetime = updatetime;
    }
 
    public void setId(Long id)
    {
        this.id = id;
    }
 
    public Long getId() 
    {
        return id;
    }
    public void setAccountType(String accountType) 
    {
        this.accountType = accountType;
    }
 
    public String getAccountType() 
    {
        return accountType;
    }
    public void setAccountAddress(String accountAddress) 
    {
        this.accountAddress = accountAddress;
    }
 
    public String getAccountAddress() 
    {
        return accountAddress;
    }
    public void setAddressPrivateKey(String addressPrivateKey) 
    {
        this.addressPrivateKey = addressPrivateKey;
    }
 
    public String getAddressPrivateKey() 
    {
        return addressPrivateKey;
    }
 
    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
            .append("id", getId())
            .append("accountType", getAccountType())
            .append("accountAddress", getAccountAddress())
            .append("addressPrivateKey", getAddressPrivateKey())
            .append("updatetime", getUpdatetime())
            .toString();
    }
}