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 PageSocialOrgHatchDTO {
|
|
@ApiModelProperty(value = "关键字")
|
private String keyword;
|
|
@ApiModelProperty("孵化单位")
|
private Long hatchUnit;
|
|
@ApiModelProperty("孵化单位类型(1.街道 2.社区)")
|
private Integer hatchUnitType;
|
|
@ApiModelProperty("孵化状态(1.孵化中 2.孵化成功)")
|
private Integer status;
|
|
@ApiModelProperty(value = "分页-当前页数", example = "1")
|
private Long pageNum;
|
|
@ApiModelProperty(value = "分页-每页记录数", example = "10")
|
private Long pageSize;
|
}
|