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;
|
|
}
|