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