57 lines
4.9 KiB
JavaScript
57 lines
4.9 KiB
JavaScript
import { post, get, put } from '../http'
|
|
|
|
// 基坑配置
|
|
export const addDeepExcavationEngineeringApi = data => post('xmgl/deepExcavationEngineering/add', data); //添加深基坑-工程信息
|
|
export const editDeepExcavationEngineeringApi = data => post('xmgl/deepExcavationEngineering/edit', data); //编辑深基坑-工程信息
|
|
export const deleteDeepExcavationEngineeringApi = data => post('xmgl/deepExcavationEngineering/delete', data); //删除深基坑-工程信息
|
|
export const selectDeepExcavationListApi = data => post('xmgl/deepExcavationEngineering/selectDeepExcavationList', data); //列表查询深基坑-工程信息
|
|
export const getDefaultMonitorTypeListApi = data => post('xmgl/deepExcavationMonitorType/getDefaultMonitorTypeList', data); //列表查询默认深基坑-监测类型列表
|
|
export const queryByIdDeepExcavationEngineeringApi = data => post('xmgl/deepExcavationEngineering/queryById', data); //通过id查询深基坑-工程信息
|
|
export const selectDeepExcavationMonitorTypeListApi = data => post('xmgl/deepExcavationMonitorType/list', data); //分页列表查询深基坑-监测类型
|
|
|
|
// 测点
|
|
export const selectMeasurePointListApi = data => post('xmgl/deepExcavationMeasurePoint/selectMeasurePointList', data); //列表查询深基坑-测点信息
|
|
export const addDeepExcavationMeasurePointApi = data => post('xmgl/deepExcavationMeasurePoint/add', data); //添加深基坑-测点信息
|
|
export const editDeepExcavationMeasurePointApi = data => post('xmgl/deepExcavationMeasurePoint/edit', data); //编辑深基坑-测点信息
|
|
export const deleteDeepExcavationMeasurePointApi = data => post('xmgl/deepExcavationMeasurePoint/delete', data); //删除深基坑-测点信息
|
|
export const getDetailDeepExcavationApi = data => get('/xmgl/deepExcavationMeasurePoint/getDetailsByMeasurePointNumber', data); //测点信息-测点管理-详情
|
|
export const getSensorListApi = data => get('/xmgl/deepExcavationSensor/getSensorListByMeasurePointNumber', data); //通过测点编号查询传感器列表
|
|
|
|
|
|
export const selectDeepExcavationSensorTypeListApi = data => post('xmgl/deepExcavationSensorType/selectDeepExcavationSensorTypeList', data); //列表查询深基坑-传感器类型信息
|
|
|
|
// 基坑监测内容实时数据
|
|
export const selectDeepExcavationCurrentDataListApi = data => post('xmgl/deepExcavationCurrentData/selectDeepExcavationCurrentDataList', data); //列表查询深基坑监测内容-实时数据
|
|
export const selectDeepExcavationCurrentDataApi = data => post('xmgl/deepExcavationCurrentData/list', data); //分页查询深基坑监测内容-实时数据
|
|
// 添加深基坑-监测实时数据信息
|
|
export const addDeepExcavationCurrentDataApi = data => post('xmgl/deepExcavationCurrentData/add', data);
|
|
// 编辑深基坑-监测实时数据
|
|
export const editDeepExcavationCurrentDataApi = data => post('xmgl/deepExcavationCurrentData/edit', data);
|
|
// 删除深基坑-监测实时数据信息
|
|
export const deleteDeepExcavationCurrentDataApi = data => post('xmgl/deepExcavationCurrentData/delete', data);
|
|
|
|
// 列表查询sj-深基坑设备信息
|
|
export const selectSJDeepFoundationEquipmentInformationListApi = data => get('xmgl/sjDeepFoundationEquipmentInformation/list', data); //列表查询深基坑设备信息
|
|
|
|
// 添加基坑平面图
|
|
export const addDeepExcavationPlaneFigureApi = data => post('xmgl/deepExcavationPlaneFigure/add', data);
|
|
// 编辑基坑平面图
|
|
export const editDeepExcavationPlaneFigureApi = data => post('xmgl/deepExcavationPlaneFigure/edit', data);
|
|
// 删除基坑平面图
|
|
export const deleteDeepExcavationPlaneFigureApi = data => post('xmgl/deepExcavationPlaneFigure/delete', data);
|
|
// 列表查询基坑平面图
|
|
export const selectDeepExcavationPlaneFigureListApi = data => post('xmgl/deepExcavationPlaneFigure/selectList', data);
|
|
// 列表查询基坑平面图点位位置信息
|
|
export const selectDeepExcavationPlaneFigureCoordinateApi = data => post('xmgl/deepExcavationPlaneFigureCoordinate/list', data);
|
|
// 列表查询所有测点
|
|
export const selectDeepExcavationAllMeasurePointListApi = data => post('xmgl/deepExcavationMeasurePoint/selectDeepExcavationAllMeasurePointList', data);
|
|
// 保存测点点位信息
|
|
export const editDeepExcavationPlaneFigureCoordinateApi = data => post('xmgl/deepExcavationPlaneFigureCoordinate/updateFigureCoordinate', data);
|
|
// 告警总数查询
|
|
export const selectMonitorTypeAlarmCountListApi = data => post('xmgl/deepExcavationMonitorType/selectMonitorTypeAlarmCountList', data);
|
|
// 查询监测内容列表以及测点汇总
|
|
export const selectMonitorTypeCountApi = data => post('xmgl/deepExcavationMonitorType/selectMonitorTypeCount', data);
|
|
// 查询监测内容近七天报警 预警数
|
|
export const selectMonitorTypeListApi = data => post('xmgl/deepExcavationMonitorType/selectMonitorTypeList', data);
|
|
// 查询基坑内容详情
|
|
export const queryByIdDeepExcavationMonitorTypeApi = data => post('xmgl/deepExcavationMonitorType/queryById', data); |