Commit 6047c982 authored by shangtx's avatar shangtx

fix: 首页服务启用状态筛选

parent 7422f9ba
......@@ -31,10 +31,13 @@
description,
create_by
from service_subclass
<if test="keyWord != null and keyWord != ''">
<bind name="p1" value="'%' + keyWord + '%'"/>
where service_name like #{p1}
</if>
<where>
and enabled = 1
<if test="keyWord != null and keyWord != ''">
<bind name="p1" value="'%' + keyWord + '%'"/>
and service_name like #{p1}
</if>
</where>
order by sequence asc
</select>
......
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