zhangherong
2025-05-09 a092e089316c05c6f7732d779e8fdff6060592c0
lxzn-module-eam/src/main/java/org/jeecg/modules/eam/mapper/EamReportRepairMapper.java
@@ -6,7 +6,9 @@
import org.apache.ibatis.annotations.Param;
import org.jeecg.modules.eam.entity.EamReportRepair;
import org.jeecg.modules.eam.request.EamReportRepairQuery;
import org.jeecg.modules.eam.vo.EquipmentRepairListVO;
import org.jeecg.modules.eam.vo.EquipmentRepairStatistics;
import org.jeecg.modules.eam.vo.EquipmentRepairStatusStatistics;
import java.util.List;
@@ -35,4 +37,16 @@
     * @return
     */
    List<EquipmentRepairStatistics> equipmentRepairStatistics(@Param("productionIds") List<String> productionIds, @Param("start") String start, @Param("end") String end);
    /**
     * 统计维修状态数据
     * @return
     */
    EquipmentRepairStatusStatistics repairStatusStatistics();
    /**
     * 维修 未完成列表
     * @return
     */
    List<EquipmentRepairListVO> repairList();
}