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
package com.panzhihua.common.model.dtos.community.social;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @title: PageSocialOrgHatchAuditDTO
 * @projectName: 成都呐喊信息技术有限公司-智慧社区项目
 * @description: 分页查询孵化申请请求参数
 * @author: hans
 * @date: 2022/04/18 14:34
 */
@Data
@ApiModel("分页查询孵化申请请求参数")
public class PageSocialOrgHatchAuditDTO {
 
    @ApiModelProperty(value = "关键字")
    private String keyword;
 
    @ApiModelProperty("孵化单位")
    private Long hatchUnit;
 
    @ApiModelProperty("孵化单位类型(1.街道 2.社区)")
    private Integer hatchUnitType;
 
    @ApiModelProperty("申请状态(1.待审核 2.审核通过 3.已驳回)")
    private Integer status;
 
    @ApiModelProperty(value = "分页-当前页数", example = "1")
    private Long pageNum;
 
    @ApiModelProperty(value = "分页-每页记录数", example = "10")
    private Long pageSize;
}