generated from dxfeng/secondev-chapanda-feishu
19 lines
333 B
Java
19 lines
333 B
Java
|
|
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<String, Object> updateInterviewStatus(Map<String, Object> param);
|
||
|
|
}
|