2024-04-26 01:06:58 +08:00
|
|
|
import { request } from '../request';
|
|
|
|
|
|
|
|
/** get Job page */
|
|
|
|
export function fetchGetJobBatchList(params?: Api.JobBatch.JobBatchSearchParams) {
|
|
|
|
return request<Api.JobBatch.JobBatchList>({
|
|
|
|
url: '/job/batch/list',
|
|
|
|
method: 'get',
|
|
|
|
params
|
|
|
|
});
|
|
|
|
}
|
2024-05-05 21:56:42 +08:00
|
|
|
|
|
|
|
export function fetchGetJobBatchDetail(id: string) {
|
|
|
|
return request<Api.JobBatch.JobBatch>({
|
|
|
|
url: `/job/batch/${id}`,
|
|
|
|
method: 'get'
|
|
|
|
});
|
|
|
|
}
|