Commit 6047c982 authored by shangtx's avatar shangtx

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

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