feat: 【antd】新增批量删除操作

This commit is contained in:
puhui999
2025-06-15 15:11:19 +08:00
parent 413f3fae15
commit 1054eec9d1
15 changed files with 248 additions and 7 deletions

View File

@@ -148,3 +148,10 @@ export function deleteCodegenTable(tableId: number) {
params: { tableId },
});
}
/** 批量删除代码生成表定义 */
export function deleteCodegenTableList(tableIds: number[]) {
return requestClient.delete(
`/infra/codegen/delete-list?tableIds=${tableIds.join(',')}`,
);
}