招工列表

This commit is contained in:
zt
2025-02-18 16:23:01 +08:00
parent ef59432ca6
commit d782d2d9f0
13 changed files with 147 additions and 11 deletions

View File

@ -27,5 +27,17 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<result property="remark" column="remark"/>
</resultMap>
<select id="appQueryPageList" resultType="com.ruoyi.bgt.domain.vo.BgtProjectRecruitVO">
select bpr.id,bpr.recruit_name,bpr.recruit_address,bpr.recruit_amount,bpr.recruit_staff_num,bpr.recruit_requirement,bpr.create_time,fpt.task_name
from bgt_project_recruit bpr left join fbs_project_task fpt on bpr.task_id = fpt.id
<where>
<if test="dto.user_id != null ">
and bpr.user_id = #{dto.userId}
</if>
<if test="dto.recruitName != null and dto.recruitName != ''">
and bpr.recruit_name like concat('%', #{dto.recruitName}, '%')
</if>
</where>
</select>
</mapper>