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.
30 lines
948 B
Java
30 lines
948 B
Java
3 years ago
|
package com.engine.organization.wrapper;
|
||
|
|
||
|
import com.engine.common.util.ServiceUtil;
|
||
|
import com.engine.organization.entity.searchtree.SearchTreeParams;
|
||
|
import com.engine.organization.service.PersonnelResumeService;
|
||
|
import com.engine.organization.service.impl.PersonnelResumeServiceImpl;
|
||
|
import com.engine.organization.util.OrganizationWrapper;
|
||
|
import weaver.hrm.User;
|
||
|
|
||
|
import java.util.Map;
|
||
|
|
||
|
/**
|
||
|
* @author:dxfeng
|
||
|
* @createTime: 2022/12/28
|
||
|
* @version: 1.0
|
||
|
*/
|
||
|
public class PersonnelResumeWrapper extends OrganizationWrapper {
|
||
|
private PersonnelResumeService getPersonnelResumeService(User user) {
|
||
|
return ServiceUtil.getService(PersonnelResumeServiceImpl.class, user);
|
||
|
}
|
||
|
|
||
|
public Map<String, Object> getSearchTree(SearchTreeParams params) {
|
||
|
return getPersonnelResumeService(user).getSearchTree(params);
|
||
|
}
|
||
|
|
||
|
public Map<String, Object> hasRight() {
|
||
|
return getPersonnelResumeService(user).hasRight();
|
||
|
}
|
||
|
}
|