提交 | 用户 | 时间
|
5cc1d9
|
1 |
import request from '@/config/axios' |
D |
2 |
|
|
3 |
export interface RawCoalToWashVO { |
|
4 |
|
|
5 |
} |
|
6 |
|
|
7 |
export interface RawCoalToWashPageReqVO extends PageParam { |
|
8 |
|
|
9 |
} |
|
10 |
|
|
11 |
// 查询RawCoalToWash列表 |
|
12 |
export const getRawCoalToWashPage = (params: RawCoalToWashPageReqVO) => { |
73d750
|
13 |
return request.get({ url: '/xmcpms/prod/wash/toWash/page', params }) |
5cc1d9
|
14 |
} |
D |
15 |
|
|
16 |
// 查询RawCoalToWash列表 |
|
17 |
export const getPointList = (params: RawCoalToWashPageReqVO) => { |
73d750
|
18 |
return request.get({ url: '/xmcpms/prod/wash/toWash/list', params }) |
5cc1d9
|
19 |
} |
D |
20 |
|
|
21 |
// 查询RawCoalToWash详情 |
|
22 |
export const getRawCoalToWash = (id: number) => { |
73d750
|
23 |
return request.get({ url: `/xmcpms/prod/prod/wash/toWash/info/${id}`}) |
5cc1d9
|
24 |
} |
D |
25 |
|
|
26 |
// 新增RawCoalToWash |
|
27 |
export const createRawCoalToWash = (data: RawCoalToWashVO) => { |
73d750
|
28 |
return request.post({ url: '/xmcpms/prod/wash/toWash/create', data }) |
5cc1d9
|
29 |
} |
D |
30 |
|
|
31 |
// 修改RawCoalToWash |
|
32 |
export const updateRawCoalToWash = (data: RawCoalToWashVO) => { |
73d750
|
33 |
return request.put({ url: '/xmcpms/prod/wash/toWash/update', data }) |
5cc1d9
|
34 |
} |
D |
35 |
|
|
36 |
// 删除RawCoalToWash |
|
37 |
export const deleteRawCoalToWash = (id: number) => { |
73d750
|
38 |
return request.delete({ url: '/xmcpms/prod/wash/toWash/delete?id=' + id }) |
5cc1d9
|
39 |
} |
D |
40 |
|
|
41 |
//导出RawCoalToWashList |
|
42 |
export const exportRawCoalToWash = (params) => { |
73d750
|
43 |
return request.download({ url: '/xmcpms/prod/wash/toWash/export', params }) |
5cc1d9
|
44 |
} |
D |
45 |
|
|
46 |
// 下载用户导入模板 |
|
47 |
export const importPointTemplate = () => { |
73d750
|
48 |
return request.download({ url: '/xmcpms/prod/wash/toWash/get-import-template' }) |
5cc1d9
|
49 |
} |