feat: 模型的流程数据清理功能

This commit is contained in:
Lesan
2025-01-17 13:59:29 +08:00
parent 8e5271a6d6
commit 1af93e502d
2 changed files with 28 additions and 0 deletions

View File

@ -72,3 +72,7 @@ export const deleteModel = async (id: number) => {
export const deployModel = async (id: number) => {
return await request.post({ url: '/bpm/model/deploy?id=' + id })
}
export const cleanModel = async (id: number) => {
return await request.delete({ url: '/bpm/model/clean?id=' + id })
}