| | |
| | | public class PageIdentityAuthRecordDTO { |
| | | |
| | | @ApiModelProperty(value = "认证类型(1.高龄认证 2.养老认证)", required = true, allowableValues = "1,2", example = "1") |
| | | @NotNull |
| | | @NotNull(message = "认证类型不能为空") |
| | | private Integer authType; |
| | | |
| | | @ApiModelProperty(value = "当前页数", required = true, example = "1") |
| | | @NotNull |
| | | @NotNull(message = "分页参数不能为空") |
| | | private Long pageNum; |
| | | |
| | | @ApiModelProperty(value = "每页记录数", required = true, example = "10") |
| | | @NotNull |
| | | @NotNull(message = "分页参数不能为空") |
| | | private Long pageSize; |
| | | |
| | | @ApiModelProperty(value = "提交用户", example = "1") |
| | | @ApiModelProperty(value = "提交用户", example = "1", hidden = true) |
| | | private Long submitUserId; |
| | | } |