增加自动化代码回滚功能

This commit is contained in:
pixel
2021-07-14 14:37:04 +08:00
parent 2de1d42a30
commit 3434b2ba5e
8 changed files with 87 additions and 11 deletions

View File

@@ -68,3 +68,19 @@ export const getSysHistory = (data) => {
data
})
}
export const rollback = (data) => {
return service({
url: '/autoCode/rollback',
method: 'post',
data
})
}
export const getMeta = (data) => {
return service({
url: '/autoCode/getMeta',
method: 'post',
data
})
}