mitao
2025-02-21 31573d6180d15ef65ed0df9c2732495f40b12663
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
30
31
32
33
34
35
36
37
package com.panzhihua.common.model.dtos.community;
 
import javax.validation.constraints.NotNull;
 
import com.panzhihua.common.model.helper.encrypt.EncryptDecryptClass;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @title: PageIdentityAuthRecordDTO
 * @projectName: 成都呐喊信息技术有限公司-智慧社区项目
 * @description: 分页查询身份认证记录
 * @author: hans
 * @date: 2021/09/03 9:39
 */
@Data
@ApiModel("分页查询身份认证记录参数")
@EncryptDecryptClass
public class PageIdentityAuthRecordDTO {
 
    @ApiModelProperty(value = "认证类型(1.高龄认证 2.养老认证)", required = true, allowableValues = "1,2", example = "1")
    @NotNull(message = "认证类型不能为空")
    private Integer authType;
 
    @ApiModelProperty(value = "当前页数", required = true, example = "1")
    @NotNull(message = "分页参数不能为空")
    private Long pageNum;
 
    @ApiModelProperty(value = "每页记录数", required = true, example = "10")
    @NotNull(message = "分页参数不能为空")
    private Long pageSize;
 
    @ApiModelProperty(value = "提交用户", example = "1", hidden = true)
    private Long submitUserId;
}