联调前置数据补招接口

This commit is contained in:
GGJ
2025-05-06 14:31:17 +08:00
parent 81726cde2d
commit f8a26b3320
9 changed files with 204 additions and 76 deletions

View File

@@ -28,7 +28,7 @@ export const updateModelState = async (id: number, state: number) => {
return await createAxios({ url: '/bpm/model/update-state', method: 'put', data: data })
}
export const createModel = async (data) => {
export const createModel = async data => {
return await createAxios({ url: '/bpm/model/create', method: 'POST', data: data })
}

View File

@@ -96,3 +96,11 @@ export function getXbLineRank(data:any) {
data: data
})
}
// 数据补招
export function recall(data:any) {
return request({
url: '/data-processing-boot/data/recall',
method: 'post',
data: data
})
}