| | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import org.jeecg.modules.eam.request.EamWeekMaintenanceQuery; |
| | | import org.jeecg.modules.eam.request.EamWeekMaintenanceRequest; |
| | | import org.jeecg.modules.eam.vo.EquipmentMaintenanceStatistics; |
| | | |
| | | import java.time.LocalDate; |
| | | import java.util.List; |
| | | |
| | | /** |
| | |
| | | * @return |
| | | */ |
| | | List<EamWeekMaintenanceOrder> selectUnCompleteOrder(String expiredDate); |
| | | |
| | | /** |
| | | * 保养统计 |
| | | * @param productionId |
| | | * @param firstOfMonth |
| | | * @param today |
| | | * @return |
| | | */ |
| | | List<EquipmentMaintenanceStatistics> equipmentMaintenanceStatistics(String productionId, LocalDate firstOfMonth, LocalDate today); |
| | | |
| | | List<EamWeekMaintenanceOrder> selectUnReceivedMaintenanceOrder(); |
| | | } |