import request from '@/utils/request' // 查询点检保养计划列表 export function listInspectionPlan(query) { return request({ url: '/em/inspectionPlan/list', method: 'get', params: query }) } // 查询点检保养计划详细 export function getInspectionPlan(id) { return request({ url: '/em/inspectionPlan/' + id, method: 'get' }) } // 新增点检保养计划 export function addInspectionPlan(data) { return request({ url: '/em/inspectionPlan', method: 'post', data: data }) } // 修改点检保养计划 export function updateInspectionPlan(data) { return request({ url: '/em/inspectionPlan', method: 'put', data: data }) } // 删除点检保养计划 export function delInspectionPlan(id) { return request({ url: '/em/inspectionPlan/' + id, method: 'delete' }) }