import request from '@/utils/request' // 查询设备巡检计划列表 export function inspectionPlanList(data) { return request({ url: '/material/InspectionPlan/list', method: 'get', data: data }) } // 查询设备巡检计划详细 export function inspectionPlanInfo(id) { return request({ url: '/material/InspectionPlan/' + id, method: 'get', }) } // 修改设备巡检计划详细 export function setInspectionPlan(data) { return request({ url: '/material/InspectionPlan', method: 'put', data: data }) }