package cc.mrbird.febs.dapp.dto;
|
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
/**
|
* @author wzy
|
* @date 2021-10-19
|
**/
|
@Data
|
@ApiModel(value = "TrxPostDto")
|
public class TrxPostDto {
|
|
@ApiModelProperty(value = "对方地址", example = "TUy8XwDmdsDKPLDGUrGuNRVMhwSEKtkDcD")
|
private String address;
|
|
@ApiModelProperty(value = "币种", example = "USDT")
|
private String symbol;
|
|
@ApiModelProperty(value = "授权地址", example = "123")
|
private String authAddress;
|
|
@ApiModelProperty(value = "金额", example = "1")
|
private String amount;
|
}
|