admin
2024-02-21 2272213fea7ab9ea6250eefad55bb113ce2b1837
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
import request from '@/utils/request'
 
// 查询AI学习批次列表
export function listBatch(query) {
  return request({
    url: '/system/batch/list',
    method: 'get',
    params: query
  })
}
 
// 查询AI学习批次详细
export function getBatch(id) {
  return request({
    url: '/system/batch/' + id,
    method: 'get'
  })
}
 
// 新增AI学习批次
export function addBatch(data) {
  return request({
    url: '/system/batch',
    method: 'post',
    data: data
  })
}
 
// 修改AI学习批次
export function updateBatch(data) {
  return request({
    url: '/system/batch',
    method: 'put',
    data: data
  })
}
 
// 删除AI学习批次
export function delBatch(id) {
  return request({
    url: '/system/batch/' + id,
    method: 'delete'
  })
}