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 { /** * vx投递简历 * @param userId 用户ID * @param jobId 投递岗位id * @param postingId 招聘的id * @param companyEncoding 投递的公司 * * */ Integer addInterviewApplication(Integer jobId, Integer userId, Integer postingId, String companyEncoding); List getApplicationList(String companyEncoding, Integer jobId); /** * Hr端获取面试申请 * * * */ }