xiaoyong931011
2020-11-30 7ae23e17d8e90dc634f3f86e2eee209cbacaace3
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
package com.xcong.excoin.modules.login.entity;
 
import java.util.List;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
 
import lombok.Data;
@Data
@TableName("wt_wallet")
public class WtWallet {
 
    /**
     * 主键
     */
    private String  address;
            
    
    /**
     * 私钥
     */
    private String  privateKey;
            
    
    /**
     * 助记词 12个单词逗号隔开
     */
    private String  mnemonicWords;
            
    
    /**
     * 密码:通过助记词导入后重置
     */
    private String  password;
            
    
    /**
     * 钱包名称
     */
    private String  walletName;
            
    
    /**
     * 终端ID
     */
    private String  terminalId;
    
    @TableField(exist = false)
    private List<String> mnemonicWordList;
 
}