Browse Source

问题修正

gaodm 5 years ago
parent
commit
e2d38db226

+ 1 - 1
precman-service/src/main/java/com/diagbot/enums/ModuleInfoTypeEnum.java

@@ -10,7 +10,7 @@ import lombok.Setter;
  */
 public enum ModuleInfoTypeEnum implements KeyedNamed {
     Common(0, "通用"),
-    ByDept(1, "根据科室划分"),
+    ByDept(1, "科室"),
     ByDis(2, "慢病");
     @Setter
     private Integer key;

+ 1 - 1
precman-service/src/main/java/com/diagbot/facade/ModuleInfoFacade.java

@@ -196,7 +196,7 @@ public class ModuleInfoFacade extends ModuleInfoServiceImpl {
         //获取模板类型名称
         QueryWrapper<DictionaryInfo> dictionaryInfoQueryWrapper = new QueryWrapper<>();
         dictionaryInfoQueryWrapper.eq("is_deleted", IsDeleteEnum.N.getKey())
-                .eq("group_type", 4)
+                .eq("group_type", 1)
                 .eq("return_type", 1)
                 .orderByDesc("order_no");
         List<DictionaryInfo> dictionaryInfoList = dictionaryFacade.list(dictionaryInfoQueryWrapper);