This commit is contained in:
2025-08-08 17:44:36 +08:00
parent 7367906a45
commit af93101ff2
23 changed files with 926 additions and 1650 deletions

View File

@@ -103,3 +103,19 @@ export const startMapping = () => {
}
return res
}
export const stopMapping = () => {
let res = {
code: 200,
message: 'ok'
}
return res
}
export const getMappingStatus = () => {
let res = {
code: 200,
message: 'ok',
mapping_return: '2',
mapping_percent: '100'
}
return res
}