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

io.nuls.v2.model.dto.TransferForm Maven / Gradle / Ivy

package io.nuls.v2.model.dto;

import io.nuls.core.rpc.model.ApiModel;
import io.nuls.core.rpc.model.ApiModelProperty;

import java.math.BigInteger;

@ApiModel
public class TransferForm {

    @ApiModelProperty(description = "转账地址")
    private String address;
    @ApiModelProperty(description = "接收者地址")
    private String toAddress;
    @ApiModelProperty(description = "密码")
    private String password;
    @ApiModelProperty(description = "转账金额")
    private BigInteger amount;
    @ApiModelProperty(description = "交易备注")
    private String remark;

    public String getAddress() {
        return address;
    }

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

    public String getToAddress() {
        return toAddress;
    }

    public void setToAddress(String toAddress) {
        this.toAddress = toAddress;
    }

    public BigInteger getAmount() {
        return amount;
    }

    public void setAmount(BigInteger amount) {
        this.amount = amount;
    }

    public String getRemark() {
        return remark;
    }

    public void setRemark(String remark) {
        this.remark = remark;
    }

    public String getPassword() {
        return password;
    }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy