From c988b20f4b376c3ae08e470a4ed96997aa9f1a21 Mon Sep 17 00:00:00 2001 From: wangxy <1356089412@qq.com> Date: Tue, 25 Jun 2024 11:15:00 +0800 Subject: [PATCH] =?UTF-8?q?feat:=E5=AF=BC=E5=87=BA=E9=97=AE=E9=A2=98bug?= =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/java/com/ruoyi/system/domain/TdLeave.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/domain/TdLeave.java b/ruoyi-system/src/main/java/com/ruoyi/system/domain/TdLeave.java index 98afc03..6f9bddf 100644 --- a/ruoyi-system/src/main/java/com/ruoyi/system/domain/TdLeave.java +++ b/ruoyi-system/src/main/java/com/ruoyi/system/domain/TdLeave.java @@ -31,7 +31,7 @@ public class TdLeave extends BaseEntity /** 提交人 */ private Long userId; - @Excel(name = "提交人") + @Excel(name = "人员姓名") private String userName; public String getUserName() { @@ -55,7 +55,7 @@ public class TdLeave extends BaseEntity private String leavereason; /** 单位 */ - @Excel(name = "单位") + @Excel(name = "所属单位") private String depart; /** 离职时间 */ @@ -64,11 +64,11 @@ public class TdLeave extends BaseEntity private Date leavedate; /** 工作交接 */ - @Excel(name = "工作交接") + @Excel(name = "工作交接", readConverterExp = "0=已交接,1=未交接") private String workstate; /** 离职状态(0:未离职,1:已离职) */ - @Excel(name = "离职状态", readConverterExp = "0=:未离职,1:已离职") + @Excel(name = "离职状态", readConverterExp = "0=未离职,1=已离职") private String leavestate; /** 审核人 */ @@ -81,7 +81,7 @@ public class TdLeave extends BaseEntity private Date examinedate; /** 审核意见(0:通过,1:不通过,2:审核中) */ - @Excel(name = "审核意见", readConverterExp = "0=:通过,1:不通过,2:审核中") + @Excel(name = "审核意见", readConverterExp = "0=通过,1不通过,2审核中") private String examinestate; public void setId(Long id)