ZpglWxgzptService.java 731 Bytes
Newer Older
1 2
package cn.timer.api.controller.zpgl.sevice;

3 4

import cn.timer.api.dto.template.InterviewNotice;
5 6 7 8 9 10 11

import java.util.Map;

/**
 * @author longys
 * @date 2022/3/25 18:08
 */
12
public interface ZpglWxgzptService {
13 14 15 16 17 18

    /**
     * 添加消息队列
     * @param map
     * @return
     */
19 20 21 22 23 24 25 26 27
    String addMessageQueue(Map<String,Object> map);

    /**
     * 安排面试 通知面试官、面试者
     * 添加消息队列
     * @param interviewNotice
     * @return
     */
    String addInterviewMessageQueue(InterviewNotice interviewNotice);
284718418@qq.com committed
28 29 30 31 32 33 34 35

    /**
     * 发起应聘登记 or 测评
     * 添加消息队列
     * @param interviewNotice
     * @return
     */
    String sendApplyOrCePin(InterviewNotice interviewNotice);
36
}