KKSU
2024-07-08 1bfe95ae803adee6f824e83d887aaf24d1d07788
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
27
28
29
package cc.mrbird.febs.dapp.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import javax.validation.constraints.NotBlank;
 
/**
 * @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;
 
    @NotBlank(message = "invite code can not be null")
    @ApiModelProperty(value = "邀请码", example = "12345678")
    private String inviteId;
}