添加企业对简历投递反馈

This commit is contained in:
chenshaohua
2026-07-21 17:15:43 +08:00
parent 36fb767b8e
commit 950e360a4e
6 changed files with 44 additions and 2 deletions

View File

@@ -17,10 +17,12 @@
<result property="remark" column="remark" />
<result property="hire" column="hire" />
<result property="hireSource" column="hire_source" />
<result property="filterStatus" column="filter_status" />
<result property="filterReason" column="filter_reason" />
</resultMap>
<sql id="selectJobApplyVo">
select id, job_id, user_id, matching_degree, del_flag, create_by, create_time, update_by, update_time, remark from job_apply
select id, job_id, user_id, matching_degree, del_flag, create_by, create_time, update_by, update_time, remark,filter_status,filter_reason from job_apply
</sql>
<select id="selectJobApplyList" parameterType="JobApply" resultMap="JobApplyResult">
@@ -32,7 +34,7 @@
</where>
</select>
<select id="applyJob" resultType="com.ruoyi.cms.domain.Job">
SELECT ja.create_time AS applyTime, ja.is_view, j.*
SELECT ja.create_time AS applyTime, ja.is_view,ja.filter_status,ja.filter_reason, j.*
FROM job j
INNER JOIN job_apply ja ON j.job_id = ja.job_id
WHERE j.del_flag = '0'