特易招,招聘小程序
You can not 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
534 B

// 工作相关接口
const api = {
// 首页-添加工作信息
addResume: {
url: '/employ/resume/addResume',
method: 'POST',
auth : true,
limit : 1500,
},
// 我的简历
queryResumeByUserId: {
url: '/employ/resume/queryResumeByUserId',
method: 'GET',
auth : true,
},
//获取简历列表
bossQueryJobList: {
url: '/employ/resume/queryResumeList',
method: 'GET',
},
//根据Id查看简历详情
bossQueryResumeById: {
url: '/employ/resume/queryResumeById',
method: 'GET',
},
}
export default api