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