PC 端修改面试时间修改飞书日程

This commit is contained in:
俞扬
2023-06-27 15:41:59 +08:00
parent 948b7ca63b
commit 300948de25
6 changed files with 113 additions and 61 deletions

View File

@@ -153,4 +153,6 @@ public interface HyPartnerInterviewPlanMapper {
*/
HyPartnerInterviewPlanDO getInterviewPlanById(String interviewPlanId);
HyPartnerInterviewPlanDO getInterviewPlanByLineId(Long lineId);
}

View File

@@ -482,4 +482,9 @@
from hy_partner_interview_plan
where id = #{interviewPlanId}
</select>
<select id="getInterviewPlanByLineId" resultType="com.cool.store.entity.HyPartnerInterviewPlanDO">
select <include refid="Base_Column_List"></include>
from hy_partner_interview_plan
where partner_line_id = #{lineId} and deleted = 0
</select>
</mapper>