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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
package cn.iocoder.yudao.module.hrm.controller.admin.approval.vo;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.time.LocalDate;
import java.time.LocalDateTime;
 
@Schema(description = "管理后台 - 调岗申请 Response VO")
@Data
public class HrmTransferApplicationRespVO {
 
    @Schema(description = "申请ID", example = "1")
    private Long id;
 
    @Schema(description = "申请单号", example = "TA202401001")
    private String no;
 
    @Schema(description = "申请人ID", example = "1")
    private Long userId;
 
    @Schema(description = "申请人姓名", example = "张三")
    private String userName;
 
    @Schema(description = "原部门ID", example = "1")
    private Long currentDeptId;
 
    @Schema(description = "原部门名称", example = "研发部")
    private String currentDeptName;
 
    @Schema(description = "原岗位ID", example = "1")
    private Long currentPostId;
 
    @Schema(description = "原岗位名称", example = "Java开发工程师")
    private String currentPostName;
 
    @Schema(description = "目标部门ID", example = "2")
    private Long targetDeptId;
 
    @Schema(description = "目标部门名称", example = "产品部")
    private String targetDeptName;
 
    @Schema(description = "目标岗位ID", example = "2")
    private Long targetPostId;
 
    @Schema(description = "目标岗位名称", example = "产品经理")
    private String targetPostName;
 
    @Schema(description = "调岗类型", example = "1")
    private Integer transferType;
 
    @Schema(description = "调岗类型名称", example = "平调")
    private String transferTypeName;
 
    @Schema(description = "生效日期", example = "2024-02-01")
    private LocalDate effectiveDate;
 
    @Schema(description = "调岗原因", example = "业务需要")
    private String reason;
 
    @Schema(description = "审批状态", example = "0")
    private Integer status;
 
    @Schema(description = "审批状态名称", example = "草稿")
    private String statusName;
 
    @Schema(description = "BPM 流程实例ID", example = "xxx")
    private String processInstanceId;
 
    @Schema(description = "审批完成时间", example = "2024-01-01 10:00:00")
    private LocalDateTime approveTime;
 
    @Schema(description = "附件地址", example = "https://xxx.com/xxx.pdf")
    private String fileUrl;
 
    @Schema(description = "备注", example = "备注信息")
    private String remark;
 
    @Schema(description = "创建时间", example = "2024-01-01 09:00:00")
    private LocalDateTime createTime;
 
}