admin
2024-06-16 c9c1560eeffdc73c38ab8ef6e1492b164b2360f5
提交 | 用户 | 时间
c9c156 1 import request from '@/utils/request'
A 2
3 // 查询设备产品过程参数采集临时表列表
4 export function listParamCollectionTemp(query) {
5   return request({
6     url: '/da/paramCollectionTemp/list',
7     method: 'get',
8     params: query
9   })
10 }
11
12 // 查询设备产品过程参数采集临时表详细
13 export function getParamCollectionTemp(id) {
14   return request({
15     url: '/da/paramCollectionTemp/' + id,
16     method: 'get'
17   })
18 }
19
20 // 新增设备产品过程参数采集临时表
21 export function addParamCollectionTemp(data) {
22   return request({
23     url: '/da/paramCollectionTemp',
24     method: 'post',
25     data: data
26   })
27 }
28
29 // 修改设备产品过程参数采集临时表
30 export function updateParamCollectionTemp(data) {
31   return request({
32     url: '/da/paramCollectionTemp',
33     method: 'put',
34     data: data
35   })
36 }
37
38 // 删除设备产品过程参数采集临时表
39 export function delParamCollectionTemp(id) {
40   return request({
41     url: '/da/paramCollectionTemp/' + id,
42     method: 'delete'
43   })
44 }