feat: add 'not contains' operator, implement inbound record export, and verify export filter rules

This commit is contained in:
DXC
2026-04-07 17:23:00 +08:00
parent 30ab1c186c
commit 6d80c90b66
7 changed files with 273 additions and 2 deletions

View File

@ -15,4 +15,13 @@ export function getInboundSummaryList(params: InboundSummaryQuery) {
method: 'get',
params
})
}
export function exportInboundSummary(params: any) {
return request({
url: '/v1/inbound/summary/export',
method: 'get',
params,
responseType: 'blob'
})
}