xiaoyong931011
2022-06-17 1bf379d02afceac7fb1a64f7ddc6547025ab54af
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.xcong.farmer.cms.modules.system.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "AdminMessageBoardDto", description = "参数接收类")
public class AdminMessageBoardDto {
 
    @ApiModelProperty(value = "查询条件", example = "张三")
    private String queryKey;
 
    @ApiModelProperty(value = "每页条数", example = "10")
    private Integer pageSize;
 
    @ApiModelProperty(value = "第几页", example = "1")
    private Integer pageNum;
}