1.给浪潮添加岗位申请、录用接口

This commit is contained in:
sh
2025-11-25 14:40:43 +08:00
parent 63dc346ca0
commit a9822c34fe
9 changed files with 86 additions and 7 deletions

View File

@@ -15,6 +15,8 @@
<result property="updateBy" column="update_by" />
<result property="updateTime" column="update_time" />
<result property="remark" column="remark" />
<result property="hire" column="hire" />
<result property="hireSource" column="hire_source" />
</resultMap>
<sql id="selectJobApplyVo">
@@ -124,4 +126,8 @@
</where>
</select>
<update id="updateJobZphApply" parameterType="JobApply">
update job_apply set update_time=sysdate(),update_by=#{updateBy},hire=#{hire},hire_source=#{hireSource} where user_id=#{userId} AND job_id=#{jobId}
</update>
</mapper>