dengzedong
2024-10-14 ebefc6c7612ef539b4c4f51305015f3a44fc26c8
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
45
46
47
48
49
50
51
import request from '@/config/axios'
 
export interface MpkVO {
  id?: string
  pyName: string
  pkgName: string
  pyType: string
  className: string
  dataLength: number
  pyModule: string
  remark?: string
  modelMethods: object
  filePath: string,
  menuAndGroup: any
}
 
export const getPage = async (params: PageParam) => {
  return await request.get({ url: '/model/mpk/file/page', params })
}
 
export const getMpk = async (id: number) => {
  return await request.get({ url: '/model/mpk/file/' + id })
}
 
export const createMpk = async (data: MpkVO) => {
  return await request.post({ url: '/model/mpk/file', data: data })
}
 
export const updateMpk = async (params: MpkVO) => {
  return await request.put({ url: '/model/mpk/file', data: params })
}
 
export const deleteMpk = async (id: number) => {
  return await request.delete({ url: '/model/mpk/file?id=' + id })
}
 
export const generatorCode = (params) => {
  return request.download({ url: '/model/mpk/file/generat', params })
}
 
export const modelRun = (params) => {
  return request.post({ url: '/model/mpk/api/test', data: params })
}
 
export const list = () => {
  return request.get({ url: '/model/mpk/file/list'})
}
 
export const publish = (params) => {
  return request.post({ url: '/model/mpk/file/publish', data: params})
}