2022-12-28 14:13:56 +08:00
|
|
|
package com.engine.organization.service;
|
|
|
|
|
|
2023-01-04 16:50:59 +08:00
|
|
|
import com.api.browser.bean.SearchConditionItem;
|
2022-12-28 14:13:56 +08:00
|
|
|
import com.engine.organization.entity.searchtree.SearchTreeParams;
|
|
|
|
|
|
2023-01-05 13:57:52 +08:00
|
|
|
import javax.servlet.http.HttpServletResponse;
|
2023-01-04 16:50:59 +08:00
|
|
|
import java.util.List;
|
2022-12-28 14:13:56 +08:00
|
|
|
import java.util.Map;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @author:dxfeng
|
|
|
|
|
* @createTime: 2022/12/28
|
|
|
|
|
* @version: 1.0
|
|
|
|
|
*/
|
|
|
|
|
public interface PersonnelResumeService {
|
|
|
|
|
/**
|
|
|
|
|
* 左侧树
|
|
|
|
|
*
|
|
|
|
|
* @param params
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
Map<String, Object> getSearchTree(SearchTreeParams params);
|
|
|
|
|
|
2022-12-29 15:52:08 +08:00
|
|
|
/**
|
|
|
|
|
* 获取人员简历列表
|
|
|
|
|
*
|
|
|
|
|
* @param uId
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
Map<String, Object> getResumeList(Integer uId);
|
|
|
|
|
|
2022-12-28 14:13:56 +08:00
|
|
|
/**
|
|
|
|
|
* 获取列表页面按钮信息
|
|
|
|
|
*
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
Map<String, Object> hasRight();
|
2022-12-30 14:14:47 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 人员简历下载
|
2023-01-05 13:57:52 +08:00
|
|
|
* @param type
|
|
|
|
|
* @param response
|
2022-12-30 14:14:47 +08:00
|
|
|
* @return
|
|
|
|
|
*/
|
2023-01-05 13:57:52 +08:00
|
|
|
String downloadPerResume(Integer type, HttpServletResponse response) throws Exception;
|
2022-12-30 14:14:47 +08:00
|
|
|
|
2023-01-05 14:02:46 +08:00
|
|
|
|
2023-01-04 16:50:59 +08:00
|
|
|
List<SearchConditionItem> personnelScreening();
|
2022-12-28 14:13:56 +08:00
|
|
|
}
|