package cn.timer.api.controller.zpgl.sevice; import cn.timer.api.dto.template.InterviewNotice; import java.util.Map; /** * @author longys * @date 2022/3/25 18:08 */ public interface ZpglWxgzptService { /** * 添加消息队列 * @param map * @return */ String addMessageQueue(Map<String,Object> map); /** * 安排面试 通知面试官、面试者 * 添加消息队列 * @param interviewNotice * @return */ String addInterviewMessageQueue(InterviewNotice interviewNotice); /** * 发起应聘登记 or 测评 * 添加消息队列 * @param interviewNotice * @return */ String sendApplyOrCePin(InterviewNotice interviewNotice); }