소스 검색

Merge branch 'master' into 122run

gaodm 5 년 전
부모
커밋
38ac5ad377

+ 0 - 1
ltkg-service/src/main/resources/mapper/KgMapper.xml

@@ -41,7 +41,6 @@
         OPTIONAL MATCH p=(m)-[]->(o) where head(Labels(m)) in ["疾病","症状","药品通用名","手术和操作","实验室检查","辅助检查"]
         OPTIONAL MATCH p=(m)-[]->(o) where head(Labels(m)) in ["疾病","症状","药品通用名","手术和操作","实验室检查","辅助检查"]
         RETURN head(Labels(n)) as sLabel,n.name as sName,Type (r) as rType, head(Labels(m)) as eLabel,m.name as eName, count(p) as pCount
         RETURN head(Labels(n)) as sLabel,n.name as sName,Type (r) as rType, head(Labels(m)) as eLabel,m.name as eName, count(p) as pCount
         ORDER BY rType
         ORDER BY rType
-        LIMIT 100
     </select>
     </select>
 
 
     <select id="getTree" resultType="java.lang.String">
     <select id="getTree" resultType="java.lang.String">

+ 12 - 0
mrman-service/src/main/java/com/diagbot/dto/QcCasesEntryAllDTO.java

@@ -40,6 +40,18 @@ public class QcCasesEntryAllDTO {
      */
      */
     private String name;
     private String name;
 
 
+    /**
+     * 控费标识(1:是控费条目,2:不是控费条目)
+     */
+    private Integer drgs;
+
+    /**
+     * 质控形式(1:形式质控,2:内涵质控)
+     */
+    private Integer type;
+
+
+
     /**
     /**
      * 规则类型(0:无,1:空项,2:错误)
      * 规则类型(0:无,1:空项,2:错误)
      */
      */

+ 10 - 0
mrman-service/src/main/java/com/diagbot/entity/QcCasesEntry.java

@@ -45,6 +45,16 @@ public class QcCasesEntry implements Serializable {
      */
      */
     private String name;
     private String name;
 
 
+    /**
+     * 控费标识(1:是控费条目,2:不是控费条目)
+     */
+    private Integer drgs;
+
+    /**
+     * 质控形式(1:形式质控,2:内涵质控)
+     */
+    private Integer type;
+
     /**
     /**
      * 规则类型(0:无,1:空项,2:错误)
      * 规则类型(0:无,1:空项,2:错误)
      */
      */

+ 1 - 1
mrman-service/src/main/java/com/diagbot/facade/QcCacesEntryFacade.java

@@ -119,8 +119,8 @@ public class QcCacesEntryFacade extends QcCasesEntryServiceImpl {
             getUpdateInfoDetialDTO.setIsReject(casesEntryHospital.getIsReject());
             getUpdateInfoDetialDTO.setIsReject(casesEntryHospital.getIsReject());
             getUpdateInfoDetialDTO.setScore(casesEntryHospital.getScore());
             getUpdateInfoDetialDTO.setScore(casesEntryHospital.getScore());
             getUpdateInfoDetialDTOS.add(getUpdateInfoDetialDTO);
             getUpdateInfoDetialDTOS.add(getUpdateInfoDetialDTO);
-            getUpdateInfoDTO.setGetUpdateInfoDetialDTOS(getUpdateInfoDetialDTOS);
         }
         }
+        getUpdateInfoDTO.setGetUpdateInfoDetialDTOS(getUpdateInfoDetialDTOS);
         getUpdateInfoDTOS.add(getUpdateInfoDTO);
         getUpdateInfoDTOS.add(getUpdateInfoDTO);
         return getUpdateInfoDTOS;
         return getUpdateInfoDTOS;
     }
     }

+ 10 - 0
mrman-service/src/main/java/com/diagbot/vo/InsertByHospitalVO.java

@@ -54,6 +54,16 @@ public class InsertByHospitalVO {
      */
      */
     private String name;
     private String name;
 
 
+    /**
+     * 控费标识(1:是控费条目,2:不是控费条目)
+     */
+    private Integer drgs;
+
+    /**
+     * 质控形式(1:形式质控,2:内涵质控)
+     */
+    private Integer type;
+
     /**
     /**
      * 规则类型(0:无,1:空项,2:错误)
      * 规则类型(0:无,1:空项,2:错误)
      */
      */

+ 10 - 0
mrman-service/src/main/java/com/diagbot/vo/QcCasesEntryAllVO.java

@@ -28,6 +28,16 @@ public class QcCasesEntryAllVO extends Page {
      */
      */
     private String name;
     private String name;
 
 
+    /**
+     * 控费标识(1:是控费条目,2:不是控费条目)
+     */
+    private Integer drgs;
+
+    /**
+     * 质控形式(1:形式质控,2:内涵质控)
+     */
+    private Integer type;
+
     /**
     /**
      * 条目编码
      * 条目编码
      */
      */

+ 9 - 1
mrman-service/src/main/resources/mapper/QcCasesEntryMapper.xml

@@ -13,6 +13,8 @@
         <result column="rule_type" property="ruleType" />
         <result column="rule_type" property="ruleType" />
         <result column="dev_type" property="devType" />
         <result column="dev_type" property="devType" />
         <result column="accuracy_type" property="accuracyType" />
         <result column="accuracy_type" property="accuracyType" />
+        <result column="drgs" property="drgs" />
+        <result column="type" property="type" />
         <result column="precond" property="precond" />
         <result column="precond" property="precond" />
         <result column="order_no" property="orderNo" />
         <result column="order_no" property="orderNo" />
         <result column="remark" property="remark" />
         <result column="remark" property="remark" />
@@ -42,6 +44,12 @@
         <if test="accuracyType != null">
         <if test="accuracyType != null">
             AND a.accuracy_type = #{accuracyType}
             AND a.accuracy_type = #{accuracyType}
         </if>
         </if>
+        <if test="drgs != null">
+            AND a.drgs = #{drgs}
+        </if>
+        <if test="type != null">
+            AND a.type = #{type}
+        </if>
         <if test="name != null and name != ''">
         <if test="name != null and name != ''">
             AND  UPPER(a.name) LIKE CONCAT('%', UPPER(trim(#{name})), '%')
             AND  UPPER(a.name) LIKE CONCAT('%', UPPER(trim(#{name})), '%')
         </if>
         </if>
@@ -269,7 +277,7 @@
             AND t2.case_entry_id = #{entryId}
             AND t2.case_entry_id = #{entryId}
         )
         )
     </select>
     </select>
-    
+
     <delete id="deleteQcTypeEntry">
     <delete id="deleteQcTypeEntry">
         DELETE t2
         DELETE t2
         FROM
         FROM