import request from '@/utils/request' // 查询清单率报表 export function inventoryRateReportList(query) { return request({ url: '/report/productionReport/inventoryRateReportList', method: 'get', params: query }) } // 查询生产执行报表 export function productionExecutionReportList(query) { return request({ url: '/report/productionReport/productionExecutionReportList', method: 'get', params: query }) }