完成请假模块
This commit is contained in:
@ -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代表删除)")
|
||||
|
Reference in New Issue
Block a user