| | |
| | | import org.jeecg.modules.eam.entity.EamInspectionOrder; |
| | | import org.jeecg.modules.eam.request.EamInspectionOrderQuery; |
| | | import org.jeecg.modules.eam.request.EamInspectionOrderRequest; |
| | | import org.jeecg.modules.eam.vo.EquipmentInspectionStatistics; |
| | | |
| | | import java.time.LocalDate; |
| | | import java.util.List; |
| | | |
| | | /** |
| | |
| | | * @return |
| | | */ |
| | | List<EamInspectionOrder> selectUnCompleteOrder(String expiredDate); |
| | | |
| | | /** |
| | | * 点检统计 |
| | | * @param productionId |
| | | * @param firstOfMonth |
| | | * @param today |
| | | * @return |
| | | */ |
| | | List<EquipmentInspectionStatistics> equipmentInspectionStatistics(String productionId, LocalDate firstOfMonth, LocalDate today); |
| | | |
| | | /** 查询所有未领取(待点检状态)的工单(关联查询设备所属产线) */ |
| | | List<EamInspectionOrder> selectUnReceivedInspectionOrder(); |
| | | } |