2026-07-09 d41fe2e95f3f64c6e3a7229acd9e74e673513a0a
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
package cn.iocoder.yudao.module.hrm.controller.admin.approval.vo;
 
import cn.iocoder.yudao.framework.common.pojo.PageParam;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.ToString;
 
@Schema(description = "管理后台 - 离职申请分页 Request VO")
@Data
@EqualsAndHashCode(callSuper = true)
@ToString(callSuper = true)
public class HrmResignationApplicationPageReqVO extends PageParam {
 
    @Schema(description = "申请单号", example = "RA202401001")
    private String no;
 
    @Schema(description = "申请人ID", example = "1")
    private Long userId;
 
    @Schema(description = "部门ID", example = "1")
    private Long deptId;
 
    @Schema(description = "离职类型", example = "1")
    private Integer resignationType;
 
    @Schema(description = "审批状态", example = "0")
    private Integer status;
 
    @Schema(description = "创建时间")
    private String[] createTime;
 
}