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; }