进入面试间增加根据面试状态和时间校验和修改面试信息

This commit is contained in:
pserimal
2023-06-26 13:29:06 +08:00
parent 44805a4401
commit 2bc4537192
10 changed files with 101 additions and 22 deletions

View File

@@ -436,4 +436,11 @@
WHERE interview_plan_id = #{interviewPlanId}
</select>
<!-- 获取面试流程状态 -->
<select id="getStatus" resultType="java.lang.String">
SELECT status
FROM hy_partner_interview
WHERE interview_plan_id = #{interviewPlanId}
</select>
</mapper>

View File

@@ -465,4 +465,18 @@
from hy_partner_interview_plan
where id = #{interviewPlanId}
</select>
<!-- 获取面试开始时间 -->
<select id="getInterviewStartTime" resultType="java.lang.String">
select start_time
from hy_partner_interview_plan
where id = #{interviewPlanId}
</select>
<!-- 根据id获取面试计划信息 -->
<select id="getInterviewPlanById" resultType="com.cool.store.entity.HyPartnerInterviewPlanDO">
select <include refid="Base_Column_List"></include>
from hy_partner_interview_plan
where id = #{interviewPlanId}
</select>
</mapper>