From 34981c30a78e8bbd7791131059a9210f9928b62c Mon Sep 17 00:00:00 2001
From: 刘光辉 <347230014@qq.com>
Date: 星期四, 17 九月 2026 09:24:09 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/master' into master

---
 jnpf-lims/jnpf-lims-entity/src/main/java/jnpf/model/EmployeeModel.java |   66 +++++++++++++++++++++++++++++++++
 1 files changed, 66 insertions(+), 0 deletions(-)

diff --git a/jnpf-lims/jnpf-lims-entity/src/main/java/jnpf/model/EmployeeModel.java b/jnpf-lims/jnpf-lims-entity/src/main/java/jnpf/model/EmployeeModel.java
new file mode 100644
index 0000000..a0ddd39
--- /dev/null
+++ b/jnpf-lims/jnpf-lims-entity/src/main/java/jnpf/model/EmployeeModel.java
@@ -0,0 +1,66 @@
+package jnpf.model;
+
+import cn.afterturn.easypoi.excel.annotation.Excel;
+import io.swagger.v3.oas.annotations.media.Schema;
+import lombok.Data;
+
+import java.util.List;
+
+/**
+ *
+ * @author JNPF寮�鍙戝钩鍙扮粍
+ * @version V3.1.0
+ * @copyright 寮曡繄淇℃伅鎶�鏈湁闄愬叕鍙�
+ *
+ */
+@Data
+public class EmployeeModel {
+    @Excel(name = "宸ュ彿", isImportField = "true")
+    @Schema(description ="宸ュ彿")
+    private String enCode;
+    @Excel(name = "濮撳悕", isImportField = "true")
+    @Schema(description ="濮撳悕")
+    private String fullName;
+    @Excel(name = "鎬у埆", isImportField = "true")
+    @Schema(description ="鎬у埆")
+    private String gender;
+    @Excel(name = "閮ㄩ棬", isImportField = "true")
+    @Schema(description ="閮ㄩ棬")
+    private String departmentName;
+    @Excel(name = "鑱屽姟", isImportField = "true")
+    @Schema(description ="鑱屽姟")
+    private String positionName;
+    @Excel(name = "鐢ㄥ伐鎬ц川", isImportField = "true")
+    @Schema(description ="鐢ㄥ伐鎬ц川")
+    private String workingNature;
+    @Excel(name = "韬唤璇佸彿", isImportField = "true")
+    @Schema(description ="韬唤璇佸彿")
+    private String idNumber;
+    @Excel(name = "鑱旂郴鐢佃瘽", isImportField = "true")
+    @Schema(description ="鑱旂郴鐢佃瘽")
+    private String telephone;
+    @Excel(name = "鍙傚姞宸ヤ綔", isImportField = "true")
+    @Schema(description ="鍙傚姞宸ヤ綔")
+    private String attendWorkTime;
+    @Excel(name = "鍑虹敓骞存湀", isImportField = "true")
+    @Schema(description ="鍑虹敓骞存湀")
+    private String birthday;
+    @Excel(name = "鏈�楂樺鍘�", isImportField = "true")
+    @Schema(description ="鏈�楂樺鍘�")
+    private String education;
+    @Excel(name = "鎵�瀛︿笓涓�", isImportField = "true")
+    @Schema(description ="鎵�瀛︿笓涓�")
+    private String major;
+    @Excel(name = "姣曚笟闄㈡牎", isImportField = "true")
+    @Schema(description ="姣曚笟闄㈡牎")
+    private String graduationAcademy;
+    @Excel(name = "姣曚笟鏃堕棿", isImportField = "true")
+    @Schema(description ="姣曚笟鏃堕棿")
+    private String graduationTime;
+    @Schema(description ="瀛楄〃鏁版嵁")
+    private List<EmployeeModel> list;
+    @Schema(description ="鍒涘缓鏃堕棿")
+    private String creatorTime;
+    private boolean type;
+    private String fileName;
+}

--
Gitblit v1.8.0