fix
Helius
2022-06-06 1bb270fa3160ebf07081fc4c08668d514bca0014
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package cc.mrbird.febs.dapp.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author wzy
 * @date 2022-06-06
 **/
@Data
@ApiModel(value = "TeamListDto", description = "我的团队接收参数类")
public class TeamListDto {
 
    @ApiModelProperty(value = "页码", example = "1")
    private Integer pageNum;
 
    @ApiModelProperty(value = "每页数量", example = "10")
    private Integer pageSize;
}