import request from '@/utils/request'
|
|
// 查询产品过站采集列表
|
export function listPassingStationCollection(query) {
|
return request({
|
url: '/da/passingStationCollection/list',
|
method: 'get',
|
params: query
|
})
|
}
|
|
// 查询产品过站采集详细
|
export function getPassingStationCollection(id) {
|
return request({
|
url: '/da/passingStationCollection/' + id,
|
method: 'get'
|
})
|
}
|
|
// 新增产品过站采集
|
export function addPassingStationCollection(data) {
|
return request({
|
url: '/da/passingStationCollection',
|
method: 'post',
|
data: data
|
})
|
}
|
|
// 新增产品过站采集
|
export function jrmAddPassingStationCollection(data) {
|
return request({
|
url: '/da/passingStationCollection/jrmAddPassingStationCollection',
|
method: 'post',
|
data: data
|
})
|
}
|
|
// 修改产品过站采集
|
export function updatePassingStationCollection(data) {
|
return request({
|
url: '/da/passingStationCollection',
|
method: 'put',
|
data: data
|
})
|
}
|
|
// 删除产品过站采集
|
export function delPassingStationCollection(id) {
|
return request({
|
url: '/da/passingStationCollection/' + id,
|
method: 'delete'
|
})
|
}
|