| | |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.jeecg.modules.eam.entity.EamInspectionOrder; |
| | | import org.jeecg.modules.eam.entity.EamWeekMaintenanceOrder; |
| | | import org.jeecg.modules.eam.vo.EquipmentInspectionStatistics; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @Description: 点检工单 |
| | |
| | | * @return |
| | | */ |
| | | IPage<EamInspectionOrder> queryPageList(Page<EamInspectionOrder> page, @Param(Constants.WRAPPER) QueryWrapper<EamInspectionOrder> queryWrapper); |
| | | |
| | | /** |
| | | * 点检统计 |
| | | * @param productionIds |
| | | * @param start |
| | | * @param end |
| | | * @return |
| | | */ |
| | | List<EquipmentInspectionStatistics> equipmentInspectionStatistics(@Param("productionIds") List<String> productionIds, @Param("start") String start, @Param("end") String end); |
| | | |
| | | List<EamInspectionOrder> selectUnReceivedInspectionOrder(); |
| | | } |