| | |
| | | package org.jeecg.modules.eam.service; |
| | | |
| | | import com.alibaba.fastjson.JSONObject; |
| | | import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import org.jeecg.common.api.vo.Result; |
| | | import org.jeecg.modules.eam.entity.EamInspectionOrder; |
| | | import org.jeecg.modules.eam.entity.EamMaintenanceStandardDetail; |
| | | import org.jeecg.modules.eam.request.EamInspectionOrderQuery; |
| | | import org.jeecg.modules.eam.request.EamInspectionOrderRequest; |
| | | import org.jeecg.modules.eam.vo.InspectionVo; |
| | |
| | | * @param eamInspectionOrderRequest |
| | | * @return |
| | | */ |
| | | boolean addInspectionOrder(EamInspectionOrderRequest eamInspectionOrderRequest); |
| | | Result<String> addInspectionOrder(EamInspectionOrderRequest eamInspectionOrderRequest); |
| | | |
| | | /** |
| | | * 编辑点检工单 |
| | |
| | | List<EamInspectionOrder> selectUnCompleteOrder(String expiredDate); |
| | | |
| | | /** |
| | | * 点检报表 new |
| | | * 导出获取基本信息 |
| | | */ |
| | | List<InspectionVo> findInspectionResult(String equipmentId, String itemDemand,String yearMonth); |
| | | JSONObject exportInspectionOrderBaseInfo(String equipmentCode, String inspectionDate); |
| | | |
| | | List<InspectionVo> findInspectionUser(String equipmentId,String yearMonth); |
| | | /** |
| | | * 日点检项列表 |
| | | */ |
| | | JSONObject exportInspectionOrderDetailList(String equipmentCode, String inspectionDate); |
| | | |
| | | List<Map<String,Object>> findInspectionStandard(String equipmentId); |
| | | /** |
| | | * 日点检责任人列表 |
| | | */ |
| | | JSONObject exportInspectionOrderDetailUserList(String equipmentCode, String inspectionDate); |
| | | |
| | | /** |
| | | * 周点检项列表 |
| | | */ |
| | | JSONObject exportWeekInsDetailList(String equipmentCode, String inspectionDate); |
| | | |
| | | /** |
| | | * 周点检责任人列表 |
| | | */ |
| | | JSONObject exportWeekInsOrderDetailUserList(String equipmentCode, String inspectionDate); |
| | | } |