import request from '/@/utils/request'; enum Api { AddMesBarcodeInfoInOutLog = '/api/mesBarcodeInfoInOutLog/add', DeleteMesBarcodeInfoInOutLog = '/api/mesBarcodeInfoInOutLog/delete', UpdateMesBarcodeInfoInOutLog = '/api/mesBarcodeInfoInOutLog/update', PageMesBarcodeInfoInOutLog = '/api/mesBarcodeInfoInOutLog/page', DetailMesBarcodeInfoInOutLog = '/api/mesBarcodeInfoInOutLog/detail', } // 增加载具出入库记录 export const addMesBarcodeInfoInOutLog = (params?: any) => request({ url: Api.AddMesBarcodeInfoInOutLog, method: 'post', data: params, }); // 删除载具出入库记录 export const deleteMesBarcodeInfoInOutLog = (params?: any) => request({ url: Api.DeleteMesBarcodeInfoInOutLog, method: 'post', data: params, }); // 编辑载具出入库记录 export const updateMesBarcodeInfoInOutLog = (params?: any) => request({ url: Api.UpdateMesBarcodeInfoInOutLog, method: 'post', data: params, }); // 分页查询载具出入库记录 export const pageMesBarcodeInfoInOutLog = (params?: any) => request({ url: Api.PageMesBarcodeInfoInOutLog, method: 'post', data: params, }); // 详情载具出入库记录 export const detailMesBarcodeInfoInOutLog = (id: any) => request({ url: Api.DetailMesBarcodeInfoInOutLog, method: 'get', data: { id }, });