Ver Fonte

手术等级问题

xiaochan há 1 ano atrás
pai
commit
c40a3e3ed7

+ 2 - 2
pom.xml

@@ -10,7 +10,7 @@
     </parent>
     <groupId>thyyxxk</groupId>
     <artifactId>web-server</artifactId>
-    <version>11.7.4</version>
+    <version>11.7.9</version>
     <name>web-server</name>
     <description>server for yibao-web</description>
     <properties>
@@ -22,7 +22,7 @@
         <dependency>
             <groupId>cn.hutool</groupId>
             <artifactId>hutool-all</artifactId>
-            <version>5.8.10</version>
+            <version>5.8.24</version>
         </dependency>
         <dependency>
             <groupId>org.springframework.boot</groupId>

+ 1 - 1
src/main/java/thyyxxk/webserver/dao/his/reports/ReportQueryCenterDao.java

@@ -14,7 +14,7 @@ public interface ReportQueryCenterDao extends BaseMapper<ReportForms> {
 
     @Select("select a.id, name, page_json, type, parent_id from " +
             "report_forms a, report_forms_rules b  " +
-            "where del_flag = 0 and a.id = b.rule_id and b.user_code =#{userCode}  ")
+            "where del_flag = 0 and a.id = b.rule_id and b.user_code =#{userCode}")
     List<ReportForms> selectReportForms(String userCode);
 
     @Select("select  id, name, page_json, type, parent_id from " +

+ 0 - 1
src/main/java/thyyxxk/webserver/dao/his/zhuyuanyisheng/JianYanJianChaDao.java

@@ -1,6 +1,5 @@
 package thyyxxk.webserver.dao.his.zhuyuanyisheng;
 
-import cn.hutool.json.JSONObject;
 import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
 import com.baomidou.mybatisplus.core.metadata.IPage;
 import com.baomidou.mybatisplus.core.toolkit.Constants;

+ 4 - 4
src/main/java/thyyxxk/webserver/entity/zhuyuanyisheng/shoushu/OpRecord.java

@@ -420,13 +420,13 @@ public class OpRecord implements Serializable {
             return "";
         }
         switch (opScale) {
-            case "1":
+            case "4":
                 return "四级";
-            case "2":
-                return "三级";
             case "3":
+                return "三级";
+            case "2":
                 return "二级";
-            case "4":
+            case "1":
                 return "一级";
             default:
                 return "";