Files
admin-govern/src/api/cs-device-boot/csLedger.ts
2025-10-11 10:35:25 +08:00

28 lines
522 B
TypeScript

import createAxios from '@/utils/request'
// 设备列表
export function getDeviceTree() {
return createAxios({
url: '/cs-device-boot/csLedger/deviceTree',
method: 'POST'
})
}
// 监测点列表
export function getLineTree() {
return createAxios({
url: '/cs-device-boot/csLedger/lineTree',
method: 'POST'
})
}
//云设备录入树
export function getCldTree() {
return createAxios({
url: '/cs-device-boot/csLedger/cldTree',
method: 'POST'
})
}