2023-09-20 11:49:52 +08:00
|
|
|
package com.engine.recruit.wrapper;
|
|
|
|
|
|
|
|
|
|
import com.engine.common.util.ServiceUtil;
|
|
|
|
|
import com.engine.core.impl.Service;
|
|
|
|
|
import com.engine.recruit.service.ApplicantResumeService;
|
|
|
|
|
import com.engine.recruit.service.impl.ApplicantResumeServiceImpl;
|
|
|
|
|
import weaver.hrm.User;
|
|
|
|
|
|
|
|
|
|
import java.util.Map;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @author:dxfeng
|
|
|
|
|
* @createTime: 2023/09/20
|
|
|
|
|
* @version: 1.0
|
|
|
|
|
*/
|
|
|
|
|
public class ApplicantResumeWrapper extends Service {
|
|
|
|
|
private ApplicantResumeService getApplicantResumeService(User user) {
|
|
|
|
|
return ServiceUtil.getService(ApplicantResumeServiceImpl.class, user);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Map<String, Object> getApplicantsName(String ids) {
|
|
|
|
|
return getApplicantResumeService(user).getApplicantsName(ids);
|
|
|
|
|
}
|
2023-09-25 16:35:14 +08:00
|
|
|
|
|
|
|
|
public Map<String, Object> getInterviewInfoById(String id) {
|
|
|
|
|
return getApplicantResumeService(user).getInterviewInfoById(id);
|
|
|
|
|
}
|
2023-09-26 15:21:59 +08:00
|
|
|
|
|
|
|
|
public Map<String, Object> getDisplayLayoutId(Map<String, Object> params) {
|
|
|
|
|
return getApplicantResumeService(user).getDisplayLayoutId(params);
|
|
|
|
|
}
|
2023-09-27 17:30:24 +08:00
|
|
|
public Map<String, Object> getTabCount(Map<String, Object> params) {
|
|
|
|
|
return getApplicantResumeService(user).getTabCount(params);
|
|
|
|
|
}
|
2023-09-20 11:49:52 +08:00
|
|
|
}
|