添加字段

This commit is contained in:
zt
2025-02-18 17:25:21 +08:00
parent d782d2d9f0
commit 10e5eaf242
17 changed files with 202 additions and 71 deletions

View File

@ -21,6 +21,12 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
from bgt_project_recruit_apply bpra
left join wgz_user wu on bpra.user_id = wu.user_id
where bpra.recruit_id = #{dto.recruitId}
<if test="dto.status !=null and dto.status !='' ">
and bpra.status = #{dto.status}
</if>
<if test="dto.username !=null and dto.username !='' ">
and wu.username like concat('%', #{dto.username}, '%')
</if>
</select>
</mapper>