13 lines
316 B
JavaScript
13 lines
316 B
JavaScript
|
|
import {
|
|
WeaTools
|
|
} from 'ecCom'
|
|
|
|
export const getHasRight = () => {
|
|
return WeaTools.callApi('/api/bs/hrmorganization/personnelresume/hasRight', 'GET');
|
|
}
|
|
|
|
|
|
export const getPersonnelResume = (params) => {
|
|
return WeaTools.callApi('/api/bs/hrmorganization/personnelresume/getResumeList', 'GET', params);
|
|
} |