zhoutg 5 lat temu
rodzic
commit
472354bacf

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

@@ -32,4 +32,9 @@ public class QcCasesEntryAllVO extends Page {
      * 条目编码
      */
     private String code;
+
+    /**
+     * 规则类型(0:无,1:空项,2:错误)
+     */
+    private Integer ruleType;
 }

+ 3 - 0
mrman-service/src/main/resources/mapper/QcCasesEntryMapper.xml

@@ -30,6 +30,9 @@
         <if test="modeId != null and modeId != ''">
             AND b.id = #{modeId}
         </if>
+        <if test="ruleType != null">
+            AND a.rule_type = #{ruleType}
+        </if>
         <if test="name != null and name != ''">
             AND  UPPER(a.name) LIKE CONCAT('%', UPPER(trim(#{name})), '%')
         </if>