From 15d3711a5321e9a5c38b66320ca6bff5b96a3b50 Mon Sep 17 00:00:00 2001 From: huanghongfa <huanghongfa123456> Date: 星期六, 18 九月 2021 16:00:43 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/test' into test --- springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/dtos/community/PageIdentityAuthRecordDTO.java | 37 +++++++++++++++++++++++++++++++++++++ 1 files changed, 37 insertions(+), 0 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/dtos/community/PageIdentityAuthRecordDTO.java b/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/dtos/community/PageIdentityAuthRecordDTO.java new file mode 100644 index 0000000..a0e80cd --- /dev/null +++ b/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/dtos/community/PageIdentityAuthRecordDTO.java @@ -0,0 +1,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; +} -- Gitblit v1.7.1