|
@@ -0,0 +1,26 @@
|
|
|
+package org.jeecg.modules.system.entity;
|
|
|
+
|
|
|
+import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
+import lombok.Data;
|
|
|
+import lombok.EqualsAndHashCode;
|
|
|
+import lombok.experimental.Accessors;
|
|
|
+import org.jeecgframework.poi.excel.annotation.Excel;
|
|
|
+
|
|
|
+@Data
|
|
|
+@EqualsAndHashCode(callSuper = false)
|
|
|
+@Accessors(chain = true)
|
|
|
+@TableName(autoResultMap = true)
|
|
|
+public class UserVacation {
|
|
|
+ @Excel(name = "工号", width = 15)
|
|
|
+ private String workNo;
|
|
|
+ @Excel(name = "姓名", width = 15)
|
|
|
+ private String realname;
|
|
|
+ @Excel(name = "一级部门", width = 15)
|
|
|
+ private String deptName;
|
|
|
+ @Excel(name = "二级部门", width = 15)
|
|
|
+ private String deptName2;
|
|
|
+ @Excel(name = "剩余年假", width = 15)
|
|
|
+ private String syYear;
|
|
|
+ @Excel(name = "剩余调休", width = 15)
|
|
|
+ private String syTx;
|
|
|
+}
|