From 63fe18b839c3bcb9c639707fbd9787844c3a122b Mon Sep 17 00:00:00 2001
From: zhangheng <3226558941@qq.com>
Date: Wed, 26 Mar 2025 09:44:50 +0800
Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E5=AF=BC=E5=85=A5=E5=90=8D?=
=?UTF-8?q?=E7=A7=B0?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../PatientInfoImportMain.java | 9 ++++++++-
.../PatientInfoImportMainMapper.xml | 19 ++++++++++++++++++-
2 files changed, 26 insertions(+), 2 deletions(-)
diff --git a/postdischarge-manage/src/main/java/com/xinelu/manage/domain/patientinfoimportmain/PatientInfoImportMain.java b/postdischarge-manage/src/main/java/com/xinelu/manage/domain/patientinfoimportmain/PatientInfoImportMain.java
index bd374c8d..41ff0ab2 100644
--- a/postdischarge-manage/src/main/java/com/xinelu/manage/domain/patientinfoimportmain/PatientInfoImportMain.java
+++ b/postdischarge-manage/src/main/java/com/xinelu/manage/domain/patientinfoimportmain/PatientInfoImportMain.java
@@ -79,6 +79,13 @@ public class PatientInfoImportMain extends BaseEntity {
@Excel(name = "患者导入情况")
private String importStatus;
+ /**
+ * 导入批次名称
+ */
+ @ApiModelProperty(value = "导入批次名称")
+ @Excel(name = "导入批次名称")
+ private String importName;
+
@Override
public String toString() {
return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
@@ -93,4 +100,4 @@ public class PatientInfoImportMain extends BaseEntity {
.append("followupCount", getFollowupCount())
.toString();
}
-}
+}
\ No newline at end of file
diff --git a/postdischarge-manage/src/main/resources/mapper/manage/patientinfoimportmain/PatientInfoImportMainMapper.xml b/postdischarge-manage/src/main/resources/mapper/manage/patientinfoimportmain/PatientInfoImportMainMapper.xml
index ba83917e..f0266de4 100644
--- a/postdischarge-manage/src/main/resources/mapper/manage/patientinfoimportmain/PatientInfoImportMainMapper.xml
+++ b/postdischarge-manage/src/main/resources/mapper/manage/patientinfoimportmain/PatientInfoImportMainMapper.xml
@@ -15,6 +15,7 @@
+
@@ -29,7 +30,7 @@
- select id, sn, create_time, create_by, hospital_agency_id, hospital_agency_name, file_name, followup_status, followup_count, import_status from patient_info_import_main
+ select id, sn, create_time, create_by, hospital_agency_id, hospital_agency_name, file_name, followup_status, followup_count, import_status ,import_name from patient_info_import_main