KKSU
2024-04-18 3cd3b259d39993fd5c1e216675e8881be5bc1a56
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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;
 
    @ApiModelProperty(value = "邀请码", example = "12345678")
    private String inviteId;
}