Commit 03e40fda authored by tianbo's avatar tianbo

fix(amos-boot-system-tzs): 修复JgUseRegistrationMapper.xml 文件中的 SQL 查询条件- 将查询…

fix(amos-boot-system-tzs): 修复JgUseRegistrationMapper.xml 文件中的 SQL 查询条件- 将查询 equListCode = '8000' 和 != '8000' 的逻辑进行了互换
parent f1f1879b
......@@ -213,7 +213,7 @@
<select id="getListPage" resultType="java.util.Map">
SELECT * FROM (
-- 查询 equListCode = '8000' 的情况
-- 查询 equListCode != '8000' 的情况
SELECT *
FROM (
<include refid="page-list-sub-select"/>
......@@ -291,7 +291,7 @@
</where>
UNION ALL
-- 查询 equListCode != '8000' 的情况
-- 查询 equListCode == '8000' 的情况
SELECT *
FROM (
<include refid="page-list-sub-pipline"/>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment