修改查询所有求职者接口和获取求职者详情接口

This commit is contained in:
chenshaohua
2026-06-17 19:11:55 +08:00
parent c368e3590a
commit 56385fbfab
3 changed files with 11 additions and 1 deletions

View File

@@ -58,6 +58,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="experience != null "> and experience = #{experience}</if>
<if test="idCard != null and idCard != ''"> and id_card like concat('%', CAST(#{idCard} AS VARCHAR), '%')</if>
<if test="userId != null"> and user_id = #{userId}</if>
<if test="isCompanyUser">and is_company_user =#{isCompanyUser}</if>
</where>
</select>
<select id="selectByJobId" resultType="com.ruoyi.common.core.domain.entity.AppUser" parameterType="java.lang.Long">