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