huanghongfa
2022-02-18 37fade33b20eda05ee3d90dc023341035fbe5dc3
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 com.panzhihua.common.model.dtos.partybuilding;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author lyq
 * 分页查询党建数据统计请求参数
 */
@Data
@ApiModel("分页查询党建数据统计请求参数")
public class PageComDataStatisticsMemberDto {
 
    @ApiModelProperty(value = "分页-当前页数")
    private Long pageNum = 1L;
 
    @ApiModelProperty(value = "分页-每页记录数")
    private Long pageSize = 10L;
 
    @ApiModelProperty(value = "关键词")
    private String keyWord;
 
    @ApiModelProperty(value = "1.本年 2.")
    private Integer type;
}