完成请假模块

This commit is contained in:
2025-02-19 18:33:38 +08:00
parent f855833966
commit 8c58c1798d
18 changed files with 348 additions and 33 deletions

View File

@ -72,8 +72,8 @@ public class WgzLeave implements Serializable {
private Long auditorUserId;
/** 审核状态0待审核 1审核中 2已同意 3已拒绝 */
@Excel(name = "审核状态" , readConverterExp = "0=待审核,1=审核中,2=已同意,3=已拒绝")
@ApiModelProperty("审核状态0待审核 1审核中 2已同意 3已拒绝")
@Excel(name = "审核状态" , readConverterExp = "0=待审核,1=审核中,2=已同意,3=已拒绝,4=已取消")
@ApiModelProperty("审核状态0待审核 1审核中 2已同意 3已拒绝 4=已取消")
private String auditorType;
/** 审核意见 */
@ -96,6 +96,11 @@ public class WgzLeave implements Serializable {
@ApiModelProperty("下班时间")
private LocalTime closingTime;
/** 取消请假 */
@Excel(name = "取消请假" , width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
@ApiModelProperty("取消请假")
private LocalDateTime cancelLeave;
/** 删除标志0代表存在 2代表删除 */
@Excel(name = "删除标志" , readConverterExp = "0=代表存在,2=代表删除")
@ApiModelProperty("删除标志0代表存在 2代表删除")