import request from '@/utils/request' // 查询工ä½ç»ˆç«¯é…置列表 export function listStationConf(query) { return request({ url: '/sc/stationConf/list', method: 'get', params: query }) } // 查询IP export function getIpv4() { return request({ url: '/sc/stationConf/getIpv4', method: 'get', }) } // 查询工ä½ç»ˆç«¯é…置详细 export function getStationConf(id) { return request({ url: '/sc/stationConf/' + id, method: 'get' }) } // 新增工ä½ç»ˆç«¯é…ç½® export function addStationConf(data) { return request({ url: '/sc/stationConf', method: 'post', data: data }) } // 修改工ä½ç»ˆç«¯é…ç½® export function updateStationConf(data) { return request({ url: '/sc/stationConf', method: 'put', data: data }) } // åˆ é™¤å·¥ä½ç»ˆç«¯é…ç½® export function delStationConf(id) { return request({ url: '/sc/stationConf/' + id, method: 'delete' }) }