package com.engine.recruit.service; import java.util.Map; /** * @author:dxfeng * @createTime: 2023/11/28 * @version: 1.0 */ public interface RecruitInterviewService { /** * 更新面试状态 * * @param param * @return */ Map updateInterviewStatus(Map param); /** * 获取面试评价状态 * * @param param * @return */ String getInterviewEvaluateStatus(Map param); }