ZpglWxgzptService.java 731 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
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);
}