import service from './service' // 三方日志管理api export class LogThirdPartySystemApi { getList = (params, showLoading = true) => { return service.post('/wly-customization-service/invokingInterfaceLog/getPageInvokingInterfaceLog', params, showLoading) } logdetailsInfo = (params, showLoading = true) => { return service.get(`/wly-customization-service/invokingInterfaceLog/getInvokingInterfaceLogByLogId?logId=${params}`, { showLoading }) } } export default new LogThirdPartySystemApi()