2022-06-08 14:51:11 +08:00
|
|
|
// 高支模模块接口
|
|
|
|
|
import { get,post } from '../http'
|
|
|
|
|
|
|
|
|
|
export const highFormworkMeasurePointAddApi = data => post('xmgl/highFormworkMeasurePoint/add', data);
|
|
|
|
|
export const highFormworkMeasurePointEditApi = data => post('xmgl/highFormworkMeasurePoint/edit', data);
|
|
|
|
|
export const highFormworkMeasurePointDeleteApi = data => post('xmgl/highFormworkMeasurePoint/delete', data);
|
|
|
|
|
export const highFormworkMeasurePointListApi = data => post('xmgl/highFormworkMeasurePoint/list', data);
|
|
|
|
|
export const highFormworkMeasurePointDetailApi = data => post('xmgl/highFormworkMeasurePoint/queryById', data);
|
|
|
|
|
|
|
|
|
|
//测量点实时数据信息
|
|
|
|
|
export const highFormworkMeasureCurrentDataApi = data => post('xmgl/highFormworkMeasureCurrentData/list', data);
|
|
|
|
|
|
|
|
|
|
//测量设备管理
|
|
|
|
|
export const highFormworkMeasureDeviceAddApi = data => post('xmgl/highFormworkMeasureDevice/add', data);
|
|
|
|
|
export const highFormworkMeasureDeviceEditApi = data => post('xmgl/highFormworkMeasureDevice/edit', data);
|
|
|
|
|
export const highFormworkMeasureDeviceDeleteApi = data => post('xmgl/highFormworkMeasureDevice/delete', data);
|
|
|
|
|
export const highFormworkMeasureDeviceListApi = data => post('xmgl/highFormworkMeasureDevice/selectDevList', data);
|
|
|
|
|
|
|
|
|
|
// 列表查询测点
|
|
|
|
|
export const selectPointListApi = data => post('xmgl/highFormworkMeasurePoint/selectList', data);
|
|
|
|
|
// 添加平面图
|
|
|
|
|
export const addHighFormworkPlaneFigureApi = data => post('xmgl/highFormworkPlaneFigure/add', data);
|
|
|
|
|
// 删除平面图
|
|
|
|
|
export const deleteHighFormworkPlaneFigureApi = data => post('xmgl/highFormworkPlaneFigure/delete', data);
|
|
|
|
|
// 编辑平面图
|
|
|
|
|
export const editHighFormworkPlaneFigureApi = data => post('xmgl/highFormworkPlaneFigure/edit', data);
|
|
|
|
|
// 列表查询平面图
|
|
|
|
|
export const selectHighFormworkPlaneFigureListApi = data => post('xmgl/highFormworkPlaneFigure/selectList', data);
|
|
|
|
|
// 编辑平面图点位
|
|
|
|
|
export const updateFigureCoordinateApi = data => post('xmgl/highFormworkPlaneFigureCoordinate/updateFigureCoordinate', data);
|
|
|
|
|
// 查询点位
|
2023-03-13 17:56:46 +08:00
|
|
|
export const selecthighFormworkPlaneFigureCoordinateListApi = data => post('xmgl/highFormworkPlaneFigureCoordinate/selectList',data);
|
|
|
|
|
|
|
|
|
|
//分页列表查询高支模报警数据信息
|
|
|
|
|
export const getHighFormworkAlarmDataApi = data => get('/xmgl/highFormworkAlarmData/list', data);
|