You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
791 B
Java
35 lines
791 B
Java
5 months ago
|
package com.engine.shkjsecond.service;
|
||
|
|
||
|
import com.engine.shkjsecond.entity.PersonnelResumePo;
|
||
|
|
||
|
import java.util.Map;
|
||
|
|
||
|
/**
|
||
|
* @Author liang.cheng
|
||
|
* @Date 2025/2/17 14:41
|
||
|
* @Description:
|
||
|
* @Version 1.0
|
||
|
*/
|
||
|
public interface PersonnelResumeService {
|
||
|
|
||
|
/**
|
||
|
* @Description: 人员简历
|
||
|
* @Author: liang.cheng
|
||
|
* @Date: 2025/2/17 14:53
|
||
|
* @param: [resourceId]
|
||
|
* @return: java.util.Map<java.lang.String,java.lang.Object>
|
||
|
*/
|
||
|
Map<String, Object> getResumeList(String resourceId);
|
||
|
|
||
|
|
||
|
|
||
|
/**
|
||
|
* @Description: 根据人员id获取主表信息
|
||
|
* @Author: liang.cheng
|
||
|
* @Date: 2025/2/18 10:43
|
||
|
* @param: [resourceId]
|
||
|
* @return: com.engine.shkjsecond.entity.PersonnelResumePo
|
||
|
*/
|
||
|
PersonnelResumePo peopleMainInfo(String resourceId);
|
||
|
}
|