1、任务、规则、白名单、策略模板新增更多的分页查询条件

This commit is contained in:
PushM
2024-05-07 22:33:59 +08:00
parent d6c487cd12
commit 3ce05a1e11
32 changed files with 317 additions and 85 deletions

View File

@@ -59,6 +59,15 @@
<if test="whiteListId != null">
and white_list_id = #{whiteListId}
</if>
<if test="systemName != null">
and white_list_system_name like concat('%', #{systemName}, '%')
</if>
<if test="auditStatus != null">
and white_list_audit_status = #{auditStatus}
</if>
<if test="creator != null">
and create_username = #{creator}
</if>
</where>
LIMIT ${(page - 1) * pageSize}, #{pageSize}
</select>
@@ -209,6 +218,15 @@
<if test="whiteListId != null">
and white_list_id = #{whiteListId}
</if>
<if test="systemName != null">
and white_list_system_name like concat('%', #{systemName}, '%')
</if>
<if test="auditStatus != null">
and white_list_audit_status = #{auditStatus}
</if>
<if test="creator != null">
and create_username = #{creator}
</if>
</where>
</select>