| | |
| | | |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.jeecg.modules.eam.entity.EamWeekMaintenanceOrder; |
| | | import org.jeecg.modules.eam.vo.EquipmentMaintenanceStatistics; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @Description: 周保工单 |
| | |
| | | * @return |
| | | */ |
| | | IPage<EamWeekMaintenanceOrder> queryPageList(IPage<EamWeekMaintenanceOrder> page, @Param(Constants.WRAPPER) Wrapper<EamWeekMaintenanceOrder> queryWrapper); |
| | | |
| | | /** |
| | | * 保养统计 |
| | | * @param productionIds |
| | | * @param start |
| | | * @param end |
| | | * @return |
| | | */ |
| | | List<EquipmentMaintenanceStatistics> equipmentMaintenanceStatistics(@Param("productionIds") List<String> productionIds, @Param("start") String start, @Param("end") String end); |
| | | } |