问题修改

This commit is contained in:
hayu 2025-08-19 15:28:22 +08:00
parent ff6de21cfb
commit 5abb54a53c
1 changed files with 11 additions and 0 deletions

View File

@ -1478,6 +1478,17 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
bm_exit_permit
WHERE
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 id="getUserList" resultType="com.bonus.material.settlement.domain.SltAgreementInfo">