问题修改
This commit is contained in:
parent
ff6de21cfb
commit
5abb54a53c
|
|
@ -1478,6 +1478,17 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
bm_exit_permit
|
bm_exit_permit
|
||||||
WHERE
|
WHERE
|
||||||
is_active='1'
|
is_active='1'
|
||||||
|
<if test="startTime != null and startTime != '' and endTime != null and endTime != ''">
|
||||||
|
and add_date BETWEEN #{startTime} AND #{endTime}
|
||||||
|
</if>
|
||||||
|
<if test="keyWord !=null and keyWord !=''">
|
||||||
|
and (
|
||||||
|
`name` like concat('%',#{keyWord},'%') or
|
||||||
|
material like concat('%',#{keyWord},'%') or
|
||||||
|
car_code like concat('%',#{keyWord},'%')
|
||||||
|
)
|
||||||
|
</if>
|
||||||
|
order by add_date desc
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
<select id="getUserList" resultType="com.bonus.material.settlement.domain.SltAgreementInfo">
|
<select id="getUserList" resultType="com.bonus.material.settlement.domain.SltAgreementInfo">
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue