/** * api接口统一管理 、、质量管理 */ import { post, get } from '../http' // 施工设备机类型 // 树形列表查询施工设备机具分类信息 export const getConstructionEquipmentCategoryTreeApi = data => get('/xmgl/constructionEquipmentToolClassification/tree/list', data); // 添加施工设备机具分类信息 export const addConstructionEquipmentCategoryApi = data => post('/xmgl/constructionEquipmentToolClassification/add', data); // 编辑施工设备机具分类信息 export const editConstructionEquipmentCategoryApi = data => post('/xmgl/constructionEquipmentToolClassification/edit', data); // 删除施工设备机具分类信息 export const deleteConstructionEquipmentCategoryApi = data => post('/xmgl/constructionEquipmentToolClassification/delete', data); // 施工设备机列表 // 分页列表查询施工设备机具信息 export const getConstructionEquipmentPageApi = data => get('/xmgl/constructionEquipmentTool/page', data); // 编辑施工设备机具信息 export const editConstructionEquipmentApi = data => post('/xmgl/constructionEquipmentTool/edit', data); // 删除施工设备机具信息 export const deleteConstructionEquipmentApi = data => post('/xmgl/constructionEquipmentTool/delete', data); // 添加施工设备机具信息和附件 export const saveWithFileConstructionEquipmentApi = data => post('/xmgl/constructionEquipmentTool/saveWithFile', data); // 通过id查询施工设备机具信息 export const getConstructionEquipmentByIdApi = data => get('/xmgl/constructionEquipmentTool/queryById', data); // 通过id查询施工设备机具附件信息 export const getConstructionEquipmentFileByIdApi = data => get('/xmgl/constructionEquipmentToolFile/queryById', data); // 列表查询施工设备机具附件信息 export const getConstructionEquipmentFileListApi = data => get('/xmgl/constructionEquipmentToolFile/list', data); // 分页列表查询施工设备机具安全检查信息 export const getConstructionEquipmentCheckPageApi = data => get('/xmgl/constructionEquipmentToolCheck/page', data); // 添加施工设备机具安全检查信息 export const addConstructionEquipmentCheckApi = data => post('/xmgl/constructionEquipmentToolCheck/add', data); // 删除施工设备机具安全检查信息 export const deleteConstructionEquipmentCheckApi = data => post('/xmgl/constructionEquipmentToolCheck/delete', data); // 编辑施工设备机具安全检查信息 export const editConstructionEquipmentCheckApi = data => post('/xmgl/constructionEquipmentToolCheck/edit', data); // 批量图片下载 export const downloadConstructionEquipmentCheckFileApi = data => post('/xmgl/constructionEquipmentTool/downloadPicInfo', data);