1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- import request from '@/utils/request'
- // 查询岗位信息列表
- export function listCompanyPost(query) {
- return request({
- url: '/company/companyPost/list',
- method: 'get',
- params: query
- })
- }
- // 查询岗位信息详细
- export function getCompanyPost(postId) {
- return request({
- url: '/company/companyPost/' + postId,
- method: 'get'
- })
- }
- // 新增岗位信息
- export function addCompanyPost(data) {
- return request({
- url: '/company/companyPost',
- method: 'post',
- data: data
- })
- }
- // 修改岗位信息
- export function updateCompanyPost(data) {
- return request({
- url: '/company/companyPost',
- method: 'put',
- data: data
- })
- }
- // 删除岗位信息
- export function delCompanyPost(postId) {
- return request({
- url: '/company/companyPost/' + postId,
- method: 'delete'
- })
- }
- // 导出岗位信息
- export function exportCompanyPost(query) {
- return request({
- url: '/company/companyPost/export',
- method: 'get',
- params: query
- })
- }
|