screenFront/src/http/AerialView/index.ts

26 lines
704 B
TypeScript
Raw Normal View History

2023-05-12 08:41:33 +00:00
/*
* @FilePath: \wwwd:\code\screenFront\src\http\AerialView\index.ts
* @Author:
* @文件版本: V1.0.0
* @Date: 2023-03-17 16:19:53
* @Description:
*
* 版权信息 : 2023 by ${}, All Rights Reserved.
*/
import {get,post,put} from "@/utils/http"
export function getSensorInfodata(){
return get('/device/getSensorInfo')
}
2023-08-14 03:40:23 +00:00
export function deviceDistributeInMachineryFactorydata(data){
return get('/device/deviceDistributeInMachineryFactory',data)
2023-05-12 08:41:33 +00:00
}
export function getSensorInfoByType(data){
return get('/device/getSensorDistributionSpecificMF',data)
}
export function updateCoordinateByPoint(data){
return put('/device/updateCoordinate',data)
}