@@ -23,4 +23,6 @@ public class QcEntryTypePageVO extends Page {
private String code;
// 所属模块
private String casesId;
+ // 质控类型为空标识 1:质控类型为空数据
+ private int typeIsNull;
}
@@ -209,6 +209,9 @@
<if test="typeName != null and typeName != ''">
and t.type_str like concat('%', #{typeName}, '%')
</if>
+ <if test="typeIsNull != null and typeIsNull == 1">
+ and t.type_str is null
+ </if>
</select>
<select id="entryTypeDetail" resultType="com.diagbot.dto.QcTypeByEntryDTO">