16 lines
310 B
TypeScript
Raw Normal View History

2024-03-27 09:27:14 +08:00
import request from '@/config/axios'
export const updateBpmSimpleModel = async (data) => {
2024-03-27 09:27:14 +08:00
return await request.post({
url: '/bpm/model/simple/update',
2024-03-27 09:27:14 +08:00
data: data
})
}
export const getBpmSimpleModel = async (id) => {
return await request.get({
url: '/bpm/model/simple/get?id=' + id
})
}