import request from '@/utils/request' // 查询自检互检列表 export function listSelfMutualInspection(query) { return request({ url: '/mes/inspectionReport/selfMutualInspectionList', method: 'get', params: query }) } // 查询自检互检上方和下方数据 export function getSelfMutualInspectionData(query) { return request({ url: '/mes/inspectionReport/selfMutualInspectionData', method: 'get', params: query }) } // 查询组线列表 export function getLineCodeList(query) { return request({ url: '/mes/inspectionReport/getLineCodeList', method: 'get', params: query }); } // 查询首检左侧 export function listFirstInspectionLeft(query) { return request({ url: '/mes/inspectionReport/listFirstInspectionLeft', method: 'get', params: query }) } // 查询首检右侧 export function listFirstInspectionRight(query) { return request({ url: '/mes/inspectionReport/listFirstInspectionRight', method: 'get', params: query }) } // 查询点检 export function listPointInspection(query) { return request({ url: '/mes/inspectionReport/listPointInspection', method: 'get', params: query }) } // 查询点检listCheckBox export function listCheckBox(query) { return request({ url: '/mes/inspectionReport/listCheckBox', method: 'get', params: query }) }