3 天以前 83e1b4d0e661f11a407fd6ea86e906b9b87b7180
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
package cn.iocoder.yudao.module.bpm.controller.admin.oa.vo;
 
import cn.iocoder.yudao.framework.common.pojo.PageParam;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import lombok.EqualsAndHashCode;
 
@Schema(description = "管理后台 - 通知公告分页 Request VO")
@Data
@EqualsAndHashCode(callSuper = true)
public class OaNoticePageReqVO extends PageParam {
 
    @Schema(description = "公告标题,模糊匹配", example = "放假")
    private String title;
 
    @Schema(description = "公告类型", example = "1")
    private Integer type;
 
    @Schema(description = "状态", example = "1")
    private Integer status;
 
    @Schema(description = "发送范围", example = "1")
    private Integer sendScope;
 
}