This commit is contained in:
van
2026-04-01 17:12:49 +08:00
parent 5ad9007fea
commit 4a59e428a6
2 changed files with 68 additions and 1 deletions

View File

@@ -21,3 +21,12 @@ export function delWecomInboundTrace(ids) {
method: 'delete'
})
}
/** 清理测试数据(追踪表 + 可选 Redis */
export function cleanWecomInboundTraceTestData(data) {
return request({
url: '/jarvis/wecom/inboundTrace/cleanTestData',
method: 'post',
data: data || {}
})
}