招工列表
This commit is contained in:
@ -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>
|
||||
|
Reference in New Issue
Block a user