Ai-interviewer-system/src/main/java/com/yzdx/AiInterviewer/service/VxService/VxInterviewApplicationServi...

32 lines
765 B
Java

package com.yzdx.AiInterviewer.service.VxService;
import com.baomidou.mybatisplus.extension.service.IService;
import com.yzdx.AiInterviewer.entity.vxEntity.VxInterviewApplication;
import java.util.List;
public interface VxInterviewApplicationService extends IService<VxInterviewApplication> {
/**
* vx投递简历
* @param userId 用户ID
* @param jobId 投递岗位id
* @param postingId 招聘的id
* @param companyEncoding 投递的公司
*
* */
Integer addInterviewApplication(Integer jobId, Integer userId, Integer postingId, String companyEncoding);
List<VxInterviewApplication> getApplicationList(String companyEncoding, Integer jobId);
/**
* Hr端获取面试申请
*
*
* */
}