9 天以前 8c14b50773a1e582b652c03f5a63bb2233d069b8
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
36
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 HrmTransferApplicationPageReqVO extends PageParam {
 
    @Schema(description = "申请单号", example = "TA202401001")
    private String no;
 
    @Schema(description = "申请人ID", example = "1")
    private Long userId;
 
    @Schema(description = "原部门ID", example = "1")
    private Long currentDeptId;
 
    @Schema(description = "目标部门ID", example = "2")
    private Long targetDeptId;
 
    @Schema(description = "调岗类型", example = "1")
    private Integer transferType;
 
    @Schema(description = "审批状态", example = "0")
    private Integer status;
 
    @Schema(description = "创建时间")
    private String[] createTime;
 
}