network.nerve.kit.model.dto.AccountDto Maven / Gradle / Ivy
package network.nerve.kit.model.dto;
import network.nerve.core.rpc.model.ApiModel;
import network.nerve.core.rpc.model.ApiModelProperty;
@ApiModel(name = "账户keystore")
public class AccountDto {
@ApiModelProperty(description = "账户地址")
private String address;
@ApiModelProperty(description = "公钥")
private String pubKey;
@ApiModelProperty(description = "明文私钥")
private String prikey;
@ApiModelProperty(description = "加密后的私钥")
private String encryptedPrivateKey;
public String getAddress() {
return address;
}
public void setAddress(String address) {
this.address = address;
}
public String getPubKey() {
return pubKey;
}
public void setPubKey(String pubKey) {
this.pubKey = pubKey;
}
public String getPrikey() {
return prikey;
}
public void setPrikey(String priKey) {
this.prikey = priKey;
}
public String getEncryptedPrivateKey() {
return encryptedPrivateKey;
}
public void setEncryptedPrivateKey(String encryptedPrivateKey) {
this.encryptedPrivateKey = encryptedPrivateKey;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy