| | |
| | | |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.jeecg.modules.mdc.entity.MdcEquipmentStatisticalInfo; |
| | | import org.jeecg.modules.mdc.entity.MdcOverallEquipmentEfficiency; |
| | | import org.jeecg.modules.system.entity.MdcProduction; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | |
| | | * @return |
| | | */ |
| | | Map<String, Object> getUtilizationByMonth(@Param("equipmentIdList") List<String> equipmentIdList, @Param("date") String date); |
| | | |
| | | /** |
| | | * 查询前七天利用率 |
| | | * |
| | | * @param equipmentIdList |
| | | * @param dateList |
| | | * @return |
| | | */ |
| | | List<MdcEquipmentStatisticalInfo> getEquipmentDayUtilizationStatistics(@Param("equipmentIdList") List<String> equipmentIdList, @Param("dateList") List<String> dateList); |
| | | |
| | | /** |
| | | * 查询OEE |
| | | * |
| | | * @param validDate |
| | | * @param equipmentIdList |
| | | * @return |
| | | */ |
| | | List<MdcOverallEquipmentEfficiency> getEquipmentOEEMonthStatistics(@Param("validDate") String validDate, @Param("equipmentIdList") List<String> equipmentIdList); |
| | | |
| | | } |