All Downloads are FREE. Search and download functionalities are using the official Maven repository.

network.nerve.kit.model.dto.DepositForm Maven / Gradle / Ivy

There is a newer version: 1.2.5
Show newest version
package network.nerve.kit.model.dto;

import network.nerve.core.rpc.model.ApiModel;
import network.nerve.core.rpc.model.ApiModelProperty;

@ApiModel(name = "委托参与共识表单数据")
public class DepositForm {

    @ApiModelProperty(description = "账户地址")
    private String address;
    @ApiModelProperty(description = "共识节点hash")
    private String agentHash;
    @ApiModelProperty(description = "委托金")
    private String deposit;
    @ApiModelProperty(description = "密码")
    private String password;

    public String getAddress() {
        return address;
    }

    public void setAddress(String address) {
        this.address = address;
    }

    public String getAgentHash() {
        return agentHash;
    }

    public void setAgentHash(String agentHash) {
        this.agentHash = agentHash;
    }

    public String getDeposit() {
        return deposit;
    }

    public void setDeposit(String deposit) {
        this.deposit = deposit;
    }

    public String getPassword() {
        return password;
    }

    public void setPassword(String password) {
        this.password = password;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy