1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| package cc.mrbird.febs.dapp.dto;
|
| import io.swagger.annotations.ApiModel;
| import io.swagger.annotations.ApiModelProperty;
| import lombok.Data;
|
| /**
| * @author wzy
| * @date 2022-05-26
| **/
| @Data
| @ApiModel(value = "ConnectDto", description = "连接参数接收类")
| public class ConnectDto {
|
| @ApiModelProperty(value = "地址", example = "123")
| private String address;
|
| @ApiModelProperty(value ="随机字符串", example = "123")
| private String nonce;
|
| @ApiModelProperty(value = "签名", example = "123")
| private String sign;
| }
|
|