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.
28 lines
532 B
28 lines
532 B
import request from "@/api/request"; |
|
|
|
export function listDepartMaping(source, query) { |
|
return request.get({ |
|
url: '/depart/maping/' + source, |
|
query |
|
}); |
|
} |
|
|
|
export function addDepartMaping(body) { |
|
return request.post({ |
|
url: '/depart/maping', |
|
body |
|
}); |
|
} |
|
|
|
export function updateDepartMaping(body) { |
|
return request.put({ |
|
url: '/depart/maping', |
|
body |
|
}); |
|
} |
|
|
|
export function delDepartMaping(id) { |
|
return request.del({ |
|
url: '/depart/maping/' + id |
|
}); |
|
}
|
|
|