修改帮助管理与协议管理的查询为模糊查询
This commit is contained in:
parent
bdafb64491
commit
0538018e92
@ -45,10 +45,10 @@
|
|||||||
from xhpc_agreement
|
from xhpc_agreement
|
||||||
where del_flag=0
|
where del_flag=0
|
||||||
<if test="title!=null and title!=''">
|
<if test="title!=null and title!=''">
|
||||||
and title=#{title}
|
and title like concat('%',#{title},'%')
|
||||||
</if>
|
</if>
|
||||||
<if test="createBy!=null and createBy!=''">
|
<if test="createBy!=null and createBy!=''">
|
||||||
and create_by=#{createBy}
|
and create_by like concat('%',#{createBy},'%')
|
||||||
</if>
|
</if>
|
||||||
<if test="type!=null">
|
<if test="type!=null">
|
||||||
and type=#{type}
|
and type=#{type}
|
||||||
|
|||||||
@ -42,10 +42,10 @@
|
|||||||
select * from xhpc_help
|
select * from xhpc_help
|
||||||
where del_flag=0
|
where del_flag=0
|
||||||
<if test="title!=null and title!=''">
|
<if test="title!=null and title!=''">
|
||||||
and title=#{title}
|
and title like concat('%',#{title},'%')
|
||||||
</if>
|
</if>
|
||||||
<if test="createBy!=null and createBy!=''">
|
<if test="createBy!=null and createBy!=''">
|
||||||
and create_by=#{createBy}
|
and create_by like concat('%',#{createBy},'%')
|
||||||
</if>
|
</if>
|
||||||
<if test="type!=null">
|
<if test="type!=null">
|
||||||
and type=#{type}
|
and type=#{type}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user