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

network.nerve.kit.model.dto.WithdrawForm 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
public class WithdrawForm {

    @ApiModelProperty(description = "地址")
    private String address;
    @ApiModelProperty(description = "委托共识的交易hash")
    private String txHash;
    @ApiModelProperty(description = "密码")
    private String password;

    public String getAddress() {
        return address;
    }

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

    public String getTxHash() {
        return txHash;
    }

    public void setTxHash(String txHash) {
        this.txHash = txHash;
    }

    public String getPassword() {
        return password;
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy