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