Quellcode durchsuchen

数据导出模板

zhaops vor 4 Jahren
Ursprung
Commit
b3bd8cbd42

+ 26 - 16
src/main/java/com/diagbot/entity/DeptConfig.java

@@ -61,27 +61,27 @@ public class DeptConfig implements Serializable {
     /**
      * 医院项目名称
      */
-    @Excel(name="HIS名称", width = 40)
+    @Excel(name = "HIS名称", width = 40, orderNum = "1")
     @NotBlank(message = "请输入医院端项目名称")
     private String hisName;
 
     /**
      * 医院项目编码
      */
-    @Excel(name = "HIS编码", width = 40)
+    @Excel(name = "HIS编码", width = 40, orderNum = "2")
     private String hisCode;
 
     /**
      * 标准名称
      */
-    @Excel(name = "标准名称", width = 40)
+    @Excel(name = "标准名称", width = 40, orderNum = "4")
     @NotBlank(message = "请输入标准术语名称")
     private String uniqueName;
 
     /**
      * 标准编码
      */
-    @Excel(name="标准编码", width = 40)
+    @Excel(name = "标准编码", width = 40, orderNum = "3")
     private String uniqueCode;
 
     public Long getId() {
@@ -91,6 +91,7 @@ public class DeptConfig implements Serializable {
     public void setId(Long id) {
         this.id = id;
     }
+
     public String getIsDeleted() {
         return isDeleted;
     }
@@ -98,6 +99,7 @@ public class DeptConfig implements Serializable {
     public void setIsDeleted(String isDeleted) {
         this.isDeleted = isDeleted;
     }
+
     public Date getGmtCreate() {
         return gmtCreate;
     }
@@ -105,6 +107,7 @@ public class DeptConfig implements Serializable {
     public void setGmtCreate(Date gmtCreate) {
         this.gmtCreate = gmtCreate;
     }
+
     public Date getGmtModified() {
         return gmtModified;
     }
@@ -112,6 +115,7 @@ public class DeptConfig implements Serializable {
     public void setGmtModified(Date gmtModified) {
         this.gmtModified = gmtModified;
     }
+
     public String getCreator() {
         return creator;
     }
@@ -119,6 +123,7 @@ public class DeptConfig implements Serializable {
     public void setCreator(String creator) {
         this.creator = creator;
     }
+
     public String getModifier() {
         return modifier;
     }
@@ -126,6 +131,7 @@ public class DeptConfig implements Serializable {
     public void setModifier(String modifier) {
         this.modifier = modifier;
     }
+
     public Long getHospitalId() {
         return hospitalId;
     }
@@ -133,6 +139,7 @@ public class DeptConfig implements Serializable {
     public void setHospitalId(Long hospitalId) {
         this.hospitalId = hospitalId;
     }
+
     public String getHisName() {
         return hisName;
     }
@@ -140,6 +147,7 @@ public class DeptConfig implements Serializable {
     public void setHisName(String hisName) {
         this.hisName = hisName;
     }
+
     public String getHisCode() {
         return hisCode;
     }
@@ -147,6 +155,7 @@ public class DeptConfig implements Serializable {
     public void setHisCode(String hisCode) {
         this.hisCode = hisCode;
     }
+
     public String getUniqueName() {
         return uniqueName;
     }
@@ -154,6 +163,7 @@ public class DeptConfig implements Serializable {
     public void setUniqueName(String uniqueName) {
         this.uniqueName = uniqueName;
     }
+
     public String getUniqueCode() {
         return uniqueCode;
     }
@@ -165,17 +175,17 @@ public class DeptConfig implements Serializable {
     @Override
     public String toString() {
         return "DeptConfig{" +
-            "id=" + id +
-            ", isDeleted=" + isDeleted +
-            ", gmtCreate=" + gmtCreate +
-            ", gmtModified=" + gmtModified +
-            ", creator=" + creator +
-            ", modifier=" + modifier +
-            ", hospitalId=" + hospitalId +
-            ", hisName=" + hisName +
-            ", hisCode=" + hisCode +
-            ", uniqueName=" + uniqueName +
-            ", uniqueCode=" + uniqueCode +
-        "}";
+                "id=" + id +
+                ", isDeleted=" + isDeleted +
+                ", gmtCreate=" + gmtCreate +
+                ", gmtModified=" + gmtModified +
+                ", creator=" + creator +
+                ", modifier=" + modifier +
+                ", hospitalId=" + hospitalId +
+                ", hisName=" + hisName +
+                ", hisCode=" + hisCode +
+                ", uniqueName=" + uniqueName +
+                ", uniqueCode=" + uniqueCode +
+                "}";
     }
 }

+ 25 - 16
src/main/java/com/diagbot/entity/DiseaseConfig.java

@@ -61,21 +61,21 @@ public class DiseaseConfig implements Serializable {
     /**
      * his名称
      */
-    @Excel(name="HIS名称", width = 40)
+    @Excel(name = "HIS名称", width = 40, orderNum = "1")
     @NotBlank(message = "请输入医院端项目名称")
     private String hisName;
 
     /**
      * 标准名
      */
-    @Excel(name = "标准名称", width = 40)
+    @Excel(name = "标准名称", width = 40, orderNum = "3")
     @NotBlank(message = "请输入标准术语名称")
     private String uniqueName;
 
     /**
      * ICD编码
      */
-    @Excel(name="ICD编码", width = 40)
+    @Excel(name = "ICD编码", width = 40, orderNum = "2")
     private String icdCode;
 
     public Long getId() {
@@ -85,6 +85,7 @@ public class DiseaseConfig implements Serializable {
     public void setId(Long id) {
         this.id = id;
     }
+
     public String getIsDeleted() {
         return isDeleted;
     }
@@ -92,6 +93,7 @@ public class DiseaseConfig implements Serializable {
     public void setIsDeleted(String isDeleted) {
         this.isDeleted = isDeleted;
     }
+
     public Date getGmtCreate() {
         return gmtCreate;
     }
@@ -99,6 +101,7 @@ public class DiseaseConfig implements Serializable {
     public void setGmtCreate(Date gmtCreate) {
         this.gmtCreate = gmtCreate;
     }
+
     public Date getGmtModified() {
         return gmtModified;
     }
@@ -106,6 +109,7 @@ public class DiseaseConfig implements Serializable {
     public void setGmtModified(Date gmtModified) {
         this.gmtModified = gmtModified;
     }
+
     public String getCreator() {
         return creator;
     }
@@ -113,6 +117,7 @@ public class DiseaseConfig implements Serializable {
     public void setCreator(String creator) {
         this.creator = creator;
     }
+
     public String getModifier() {
         return modifier;
     }
@@ -120,6 +125,7 @@ public class DiseaseConfig implements Serializable {
     public void setModifier(String modifier) {
         this.modifier = modifier;
     }
+
     public Long getHospitalId() {
         return hospitalId;
     }
@@ -127,6 +133,7 @@ public class DiseaseConfig implements Serializable {
     public void setHospitalId(Long hospitalId) {
         this.hospitalId = hospitalId;
     }
+
     public String getHisName() {
         return hisName;
     }
@@ -134,6 +141,7 @@ public class DiseaseConfig implements Serializable {
     public void setHisName(String hisName) {
         this.hisName = hisName;
     }
+
     public String getUniqueName() {
         return uniqueName;
     }
@@ -141,6 +149,7 @@ public class DiseaseConfig implements Serializable {
     public void setUniqueName(String uniqueName) {
         this.uniqueName = uniqueName;
     }
+
     public String getIcdCode() {
         return icdCode;
     }
@@ -152,16 +161,16 @@ public class DiseaseConfig implements Serializable {
     @Override
     public String toString() {
         return "DiseaseConfig{" +
-            "id=" + id +
-            ", isDeleted=" + isDeleted +
-            ", gmtCreate=" + gmtCreate +
-            ", gmtModified=" + gmtModified +
-            ", creator=" + creator +
-            ", modifier=" + modifier +
-            ", hospitalId=" + hospitalId +
-            ", hisName=" + hisName +
-            ", uniqueName=" + uniqueName +
-            ", icdCode=" + icdCode +
-        "}";
-    }
-}
+                "id=" + id +
+                ", isDeleted=" + isDeleted +
+                ", gmtCreate=" + gmtCreate +
+                ", gmtModified=" + gmtModified +
+                ", creator=" + creator +
+                ", modifier=" + modifier +
+                ", hospitalId=" + hospitalId +
+                ", hisName=" + hisName +
+                ", uniqueName=" + uniqueName +
+                ", icdCode=" + icdCode +
+                "}";
+    }
+}

+ 5 - 5
src/main/java/com/diagbot/entity/DrugConfig.java

@@ -61,27 +61,27 @@ public class DrugConfig implements Serializable {
     /**
      * his名称
      */
-    @Excel(name = "HIS名称", width = 40)
+    @Excel(name = "HIS名称", width = 40, orderNum = "1")
     @NotBlank(message = "请输入医院端项目名称")
     private String hisName;
 
     /**
      * 标准名
      */
-    @Excel(name = "标准名称", width = 40)
+    @Excel(name = "标准名称", width = 40, orderNum = "4")
     @NotBlank(message = "请输入标准术语名称")
     private String uniqueName;
 
     /**
      * 标准编码
      */
-    @Excel(name = "标准编码", width = 40)
+    @Excel(name = "标准编码", width = 40, orderNum = "3")
     private String uniqueCode;
 
     /**
      * 剂型
      */
-    @Excel(name = "剂型", width = 20)
+    @Excel(name = "剂型", width = 20, orderNum = "2")
     private String form;
 
     public Long getId() {
@@ -188,4 +188,4 @@ public class DrugConfig implements Serializable {
                 ", form=" + form +
                 "}";
     }
-}
+}

+ 26 - 16
src/main/java/com/diagbot/entity/LisConfig.java

@@ -63,27 +63,27 @@ public class LisConfig implements Serializable {
     /**
      * his大项名称
      */
-    @Excel(name = "his大项名称", width = 40)
+    @Excel(name = "his大项名称", width = 40, orderNum = "1")
     @NotBlank(message = "请输入大项名称")
     private String hisName;
 
     /**
      * his小项名称
      */
-    @Excel(name = "his小项名称", width = 40)
+    @Excel(name = "his小项名称", width = 40, orderNum = "2")
     private String hisDetailName;
 
     /**
      * 标准名
      */
-    @Excel(name = "标准名", width = 40)
+    @Excel(name = "标准名", width = 40, orderNum = "4")
     @NotBlank(message = "请输入公表名称")
     private String uniqueName;
 
     /**
      * 标准编码
      */
-    @Excel(name = "标准编码", width = 40)
+    @Excel(name = "标准编码", width = 40, orderNum = "3")
     private String uniqueCode;
 
     public Long getId() {
@@ -93,6 +93,7 @@ public class LisConfig implements Serializable {
     public void setId(Long id) {
         this.id = id;
     }
+
     public String getIsDeleted() {
         return isDeleted;
     }
@@ -100,6 +101,7 @@ public class LisConfig implements Serializable {
     public void setIsDeleted(String isDeleted) {
         this.isDeleted = isDeleted;
     }
+
     public Date getGmtCreate() {
         return gmtCreate;
     }
@@ -107,6 +109,7 @@ public class LisConfig implements Serializable {
     public void setGmtCreate(Date gmtCreate) {
         this.gmtCreate = gmtCreate;
     }
+
     public Date getGmtModified() {
         return gmtModified;
     }
@@ -114,6 +117,7 @@ public class LisConfig implements Serializable {
     public void setGmtModified(Date gmtModified) {
         this.gmtModified = gmtModified;
     }
+
     public String getCreator() {
         return creator;
     }
@@ -121,6 +125,7 @@ public class LisConfig implements Serializable {
     public void setCreator(String creator) {
         this.creator = creator;
     }
+
     public String getModifier() {
         return modifier;
     }
@@ -128,6 +133,7 @@ public class LisConfig implements Serializable {
     public void setModifier(String modifier) {
         this.modifier = modifier;
     }
+
     public Long getHospitalId() {
         return hospitalId;
     }
@@ -135,6 +141,7 @@ public class LisConfig implements Serializable {
     public void setHospitalId(Long hospitalId) {
         this.hospitalId = hospitalId;
     }
+
     public String getHisName() {
         return hisName;
     }
@@ -142,6 +149,7 @@ public class LisConfig implements Serializable {
     public void setHisName(String hisName) {
         this.hisName = hisName;
     }
+
     public String getHisDetailName() {
         return hisDetailName;
     }
@@ -149,6 +157,7 @@ public class LisConfig implements Serializable {
     public void setHisDetailName(String hisDetailName) {
         this.hisDetailName = hisDetailName;
     }
+
     public String getUniqueName() {
         return uniqueName;
     }
@@ -156,6 +165,7 @@ public class LisConfig implements Serializable {
     public void setUniqueName(String uniqueName) {
         this.uniqueName = uniqueName;
     }
+
     public String getUniqueCode() {
         return uniqueCode;
     }
@@ -167,17 +177,17 @@ public class LisConfig implements Serializable {
     @Override
     public String toString() {
         return "LisConfig{" +
-            "id=" + id +
-            ", isDeleted=" + isDeleted +
-            ", gmtCreate=" + gmtCreate +
-            ", gmtModified=" + gmtModified +
-            ", creator=" + creator +
-            ", modifier=" + modifier +
-            ", hospitalId=" + hospitalId +
-            ", hisName=" + hisName +
-            ", hisDetailName=" + hisDetailName +
-            ", uniqueName=" + uniqueName +
-            ", uniqueCode=" + uniqueCode +
-        "}";
+                "id=" + id +
+                ", isDeleted=" + isDeleted +
+                ", gmtCreate=" + gmtCreate +
+                ", gmtModified=" + gmtModified +
+                ", creator=" + creator +
+                ", modifier=" + modifier +
+                ", hospitalId=" + hospitalId +
+                ", hisName=" + hisName +
+                ", hisDetailName=" + hisDetailName +
+                ", uniqueName=" + uniqueName +
+                ", uniqueCode=" + uniqueCode +
+                "}";
     }
 }

+ 25 - 16
src/main/java/com/diagbot/entity/OperationConfig.java

@@ -61,21 +61,21 @@ public class OperationConfig implements Serializable {
     /**
      * his名称
      */
-    @Excel(name="HIS名称", width = 40)
+    @Excel(name = "HIS名称", width = 40, orderNum = "1")
     @NotBlank(message = "请输入医院端项目名称")
     private String hisName;
 
     /**
      * 标准名
      */
-    @Excel(name = "标准名称", width = 40)
+    @Excel(name = "标准名称", width = 40, orderNum = "3")
     @NotBlank(message = "请输入标准术语名称")
     private String uniqueName;
 
     /**
      * 标准编码
      */
-    @Excel(name="标准编码", width = 40)
+    @Excel(name = "标准编码", width = 40, orderNum = "2")
     private String uniqueCode;
 
     public Long getId() {
@@ -85,6 +85,7 @@ public class OperationConfig implements Serializable {
     public void setId(Long id) {
         this.id = id;
     }
+
     public String getIsDeleted() {
         return isDeleted;
     }
@@ -92,6 +93,7 @@ public class OperationConfig implements Serializable {
     public void setIsDeleted(String isDeleted) {
         this.isDeleted = isDeleted;
     }
+
     public Date getGmtCreate() {
         return gmtCreate;
     }
@@ -99,6 +101,7 @@ public class OperationConfig implements Serializable {
     public void setGmtCreate(Date gmtCreate) {
         this.gmtCreate = gmtCreate;
     }
+
     public Date getGmtModified() {
         return gmtModified;
     }
@@ -106,6 +109,7 @@ public class OperationConfig implements Serializable {
     public void setGmtModified(Date gmtModified) {
         this.gmtModified = gmtModified;
     }
+
     public String getCreator() {
         return creator;
     }
@@ -113,6 +117,7 @@ public class OperationConfig implements Serializable {
     public void setCreator(String creator) {
         this.creator = creator;
     }
+
     public String getModifier() {
         return modifier;
     }
@@ -120,6 +125,7 @@ public class OperationConfig implements Serializable {
     public void setModifier(String modifier) {
         this.modifier = modifier;
     }
+
     public Long getHospitalId() {
         return hospitalId;
     }
@@ -127,6 +133,7 @@ public class OperationConfig implements Serializable {
     public void setHospitalId(Long hospitalId) {
         this.hospitalId = hospitalId;
     }
+
     public String getHisName() {
         return hisName;
     }
@@ -134,6 +141,7 @@ public class OperationConfig implements Serializable {
     public void setHisName(String hisName) {
         this.hisName = hisName;
     }
+
     public String getUniqueName() {
         return uniqueName;
     }
@@ -141,6 +149,7 @@ public class OperationConfig implements Serializable {
     public void setUniqueName(String uniqueName) {
         this.uniqueName = uniqueName;
     }
+
     public String getUniqueCode() {
         return uniqueCode;
     }
@@ -152,16 +161,16 @@ public class OperationConfig implements Serializable {
     @Override
     public String toString() {
         return "OperationConfig{" +
-            "id=" + id +
-            ", isDeleted=" + isDeleted +
-            ", gmtCreate=" + gmtCreate +
-            ", gmtModified=" + gmtModified +
-            ", creator=" + creator +
-            ", modifier=" + modifier +
-            ", hospitalId=" + hospitalId +
-            ", hisName=" + hisName +
-            ", uniqueName=" + uniqueName +
-            ", uniqueCode=" + uniqueCode +
-        "}";
-    }
-}
+                "id=" + id +
+                ", isDeleted=" + isDeleted +
+                ", gmtCreate=" + gmtCreate +
+                ", gmtModified=" + gmtModified +
+                ", creator=" + creator +
+                ", modifier=" + modifier +
+                ", hospitalId=" + hospitalId +
+                ", hisName=" + hisName +
+                ", uniqueName=" + uniqueName +
+                ", uniqueCode=" + uniqueCode +
+                "}";
+    }
+}

+ 23 - 14
src/main/java/com/diagbot/entity/PacsConfig.java

@@ -61,21 +61,21 @@ public class PacsConfig implements Serializable {
     /**
      * his名称
      */
-    @Excel(name="HIS名称", width = 40)
+    @Excel(name = "HIS名称", width = 40, orderNum = "1")
     @NotBlank(message = "请输入医院端项目名称")
     private String hisName;
 
     /**
      * 标准名
      */
-    @Excel(name = "标准名称", width = 40)
+    @Excel(name = "标准名称", width = 40, orderNum = "3")
     @NotBlank(message = "请输入标准术语名称")
     private String uniqueName;
 
     /**
      * 标准编码
      */
-    @Excel(name="标准编码", width = 40)
+    @Excel(name = "标准编码", width = 40, orderNum = "2")
     private String uniqueCode;
 
     public Long getId() {
@@ -85,6 +85,7 @@ public class PacsConfig implements Serializable {
     public void setId(Long id) {
         this.id = id;
     }
+
     public String getIsDeleted() {
         return isDeleted;
     }
@@ -92,6 +93,7 @@ public class PacsConfig implements Serializable {
     public void setIsDeleted(String isDeleted) {
         this.isDeleted = isDeleted;
     }
+
     public Date getGmtCreate() {
         return gmtCreate;
     }
@@ -99,6 +101,7 @@ public class PacsConfig implements Serializable {
     public void setGmtCreate(Date gmtCreate) {
         this.gmtCreate = gmtCreate;
     }
+
     public Date getGmtModified() {
         return gmtModified;
     }
@@ -106,6 +109,7 @@ public class PacsConfig implements Serializable {
     public void setGmtModified(Date gmtModified) {
         this.gmtModified = gmtModified;
     }
+
     public String getCreator() {
         return creator;
     }
@@ -113,6 +117,7 @@ public class PacsConfig implements Serializable {
     public void setCreator(String creator) {
         this.creator = creator;
     }
+
     public String getModifier() {
         return modifier;
     }
@@ -120,6 +125,7 @@ public class PacsConfig implements Serializable {
     public void setModifier(String modifier) {
         this.modifier = modifier;
     }
+
     public Long getHospitalId() {
         return hospitalId;
     }
@@ -127,6 +133,7 @@ public class PacsConfig implements Serializable {
     public void setHospitalId(Long hospitalId) {
         this.hospitalId = hospitalId;
     }
+
     public String getHisName() {
         return hisName;
     }
@@ -134,6 +141,7 @@ public class PacsConfig implements Serializable {
     public void setHisName(String hisName) {
         this.hisName = hisName;
     }
+
     public String getUniqueName() {
         return uniqueName;
     }
@@ -141,6 +149,7 @@ public class PacsConfig implements Serializable {
     public void setUniqueName(String uniqueName) {
         this.uniqueName = uniqueName;
     }
+
     public String getUniqueCode() {
         return uniqueCode;
     }
@@ -152,16 +161,16 @@ public class PacsConfig implements Serializable {
     @Override
     public String toString() {
         return "PacsConfig{" +
-            "id=" + id +
-            ", isDeleted=" + isDeleted +
-            ", gmtCreate=" + gmtCreate +
-            ", gmtModified=" + gmtModified +
-            ", creator=" + creator +
-            ", modifier=" + modifier +
-            ", hospitalId=" + hospitalId +
-            ", hisName=" + hisName +
-            ", uniqueName=" + uniqueName +
-            ", uniqueCode=" + uniqueCode +
-        "}";
+                "id=" + id +
+                ", isDeleted=" + isDeleted +
+                ", gmtCreate=" + gmtCreate +
+                ", gmtModified=" + gmtModified +
+                ", creator=" + creator +
+                ", modifier=" + modifier +
+                ", hospitalId=" + hospitalId +
+                ", hisName=" + hisName +
+                ", uniqueName=" + uniqueName +
+                ", uniqueCode=" + uniqueCode +
+                "}";
     }
 }

+ 4 - 4
src/main/java/com/diagbot/entity/TransfusionConfig.java

@@ -61,21 +61,21 @@ public class TransfusionConfig implements Serializable {
     /**
      * 医院项目名称
      */
-    @Excel(name = "HIS名称", width = 40)
+    @Excel(name = "HIS名称", width = 40, orderNum = "1")
     @NotBlank(message = "请输入医院端项目名称")
     private String hisName;
 
     /**
      * 标准名称
      */
-    @Excel(name = "标准名称", width = 40)
+    @Excel(name = "标准名称", width = 40, orderNum = "3")
     @NotBlank(message = "请输入标准术语名称")
     private String uniqueName;
 
     /**
      * 标准编码
      */
-    @Excel(name = "标准编码", width = 40)
+    @Excel(name = "标准编码", width = 40, orderNum = "2")
     private String uniqueCode;
 
     public Long getId() {
@@ -173,4 +173,4 @@ public class TransfusionConfig implements Serializable {
                 ", uniqueCode=" + uniqueCode +
                 "}";
     }
-}
+}

+ 1 - 1
src/main/java/com/diagbot/facade/DeptConfigFacade.java

@@ -383,7 +383,7 @@ public class DeptConfigFacade {
     }
 
     /**
-     * 数据导出模板
+     * 数据导入模板导出
      *
      * @param response
      */

+ 1 - 1
src/main/java/com/diagbot/facade/DiseaseConfigFacade.java

@@ -383,7 +383,7 @@ public class DiseaseConfigFacade {
     }
 
     /**
-     * 数据导出模板
+     * 数据导入模板导出
      *
      * @param response
      */

+ 1 - 1
src/main/java/com/diagbot/facade/DrugConfigFacade.java

@@ -518,7 +518,7 @@ public class DrugConfigFacade {
     }
 
     /**
-     * 数据导出模板
+     * 数据导入模板导出
      *
      * @param response
      */

+ 2 - 2
src/main/java/com/diagbot/facade/LisConfigFacade.java

@@ -462,12 +462,12 @@ public class LisConfigFacade{
     }
 
     /**
-     * 数据导出
+     * 数据导入模板导
      *
      * @param response
      */
     public void exportExcelModule(HttpServletResponse response) {
-        String fileName = "检验映射.xls";
+        String fileName = "检验映射模板.xls";
         ExcelUtils.exportExcel(new ArrayList<>(), null, "sheet1", LisConfig.class, fileName, response, 12.8f);
     }
 }

+ 1 - 1
src/main/java/com/diagbot/facade/OperationConfigFacade.java

@@ -383,7 +383,7 @@ public class OperationConfigFacade {
     }
 
     /**
-     * 数据导出模板
+     * 数据导入模板导出
      *
      * @param response
      */

+ 1 - 1
src/main/java/com/diagbot/facade/PacsConfigFacade.java

@@ -383,7 +383,7 @@ public class PacsConfigFacade {
     }
 
     /**
-     * 数据导出模板
+     * 数据导入模板导出
      *
      * @param response
      */

+ 1 - 1
src/main/java/com/diagbot/facade/TransfusionConfigFacade.java

@@ -383,7 +383,7 @@ public class TransfusionConfigFacade {
     }
 
     /**
-     * 数据导出模板
+     * 数据导入模板导出
      *
      * @param response
      */

+ 2 - 2
src/main/java/com/diagbot/web/DeptConfigController.java

@@ -157,11 +157,11 @@ public class DeptConfigController {
     }
 
     /**
-     * 数据导出模板
+     * 数据导入模板导出
      *
      * @return
      */
-    @ApiOperation(value = "数据导出模板[by:zhaops]",
+    @ApiOperation(value = "数据导入模板导出[by:zhaops]",
             notes = "")
     @PostMapping("/exportExcelModule")
     @SysLogger("exportExcelModule")

+ 2 - 2
src/main/java/com/diagbot/web/DiseaseConfigController.java

@@ -157,11 +157,11 @@ public class DiseaseConfigController {
     }
 
     /**
-     * 数据导出模板
+     * 数据导入模板导出
      *
      * @return
      */
-    @ApiOperation(value = "数据导出模板[by:zhaops]",
+    @ApiOperation(value = "数据导入模板导出[by:zhaops]",
             notes = "")
     @PostMapping("/exportExcelModule")
     @SysLogger("exportExcelModule")

+ 2 - 2
src/main/java/com/diagbot/web/DrugConfigController.java

@@ -157,11 +157,11 @@ public class DrugConfigController {
     }
 
     /**
-     * 数据导出模板
+     * 数据导入模板导出
      *
      * @return
      */
-    @ApiOperation(value = "数据导出模板[by:zhaops]",
+    @ApiOperation(value = "数据导入模板导出[by:zhaops]",
             notes = "")
     @PostMapping("/exportExcelModule")
     @SysLogger("exportExcelModule")

+ 2 - 2
src/main/java/com/diagbot/web/LisConfigController.java

@@ -155,11 +155,11 @@ public class LisConfigController {
     }
 
     /**
-     * 数据导出模板
+     * 数据导入模板导出
      *
      * @return
      */
-    @ApiOperation(value = "数据导出模板[by:zhaops]",
+    @ApiOperation(value = "数据导入模板导出[by:zhaops]",
             notes = "")
     @PostMapping("/exportExcelModule")
     @SysLogger("exportExcelModule")

+ 2 - 2
src/main/java/com/diagbot/web/OperationConfigController.java

@@ -157,11 +157,11 @@ public class OperationConfigController {
     }
 
     /**
-     * 数据导出模板
+     * 数据导入模板导出
      *
      * @return
      */
-    @ApiOperation(value = "数据导出模板[by:zhaops]",
+    @ApiOperation(value = "数据导入模板导出[by:zhaops]",
             notes = "")
     @PostMapping("/exportExcelModule")
     @SysLogger("exportExcelModule")

+ 2 - 2
src/main/java/com/diagbot/web/PacsConfigController.java

@@ -158,11 +158,11 @@ public class PacsConfigController {
     }
 
     /**
-     * 数据导出模板
+     * 数据导入模板导出
      *
      * @return
      */
-    @ApiOperation(value = "数据导出模板[by:zhaops]",
+    @ApiOperation(value = "数据导入模板导出[by:zhaops]",
             notes = "")
     @PostMapping("/exportExcelModule")
     @SysLogger("exportExcelModule")

+ 2 - 2
src/main/java/com/diagbot/web/TransfusionConfigController.java

@@ -157,11 +157,11 @@ public class TransfusionConfigController {
     }
 
     /**
-     * 数据导出模板
+     * 数据导入模板导出
      *
      * @return
      */
-    @ApiOperation(value = "数据导出模板[by:zhaops]",
+    @ApiOperation(value = "数据导入模板导出[by:zhaops]",
             notes = "")
     @PostMapping("/exportExcelModule")
     @SysLogger("exportExcelModule")