mirror of
https://gitee.com/hhyykk/ipms-sjy-ui.git
synced 2025-06-19 06:42:00 +08:00
16 lines
310 B
TypeScript
16 lines
310 B
TypeScript
import request from '@/config/axios'
|
|
|
|
|
|
export const updateBpmSimpleModel = async (data) => {
|
|
return await request.post({
|
|
url: '/bpm/model/simple/update',
|
|
data: data
|
|
})
|
|
}
|
|
|
|
export const getBpmSimpleModel = async (id) => {
|
|
return await request.get({
|
|
url: '/bpm/model/simple/get?id=' + id
|
|
})
|
|
}
|