zhangherong
2025-05-09 140248961e5f865d48e850f8d6b10e3338171283
lxzn-module-eam/src/main/java/org/jeecg/modules/eam/mapper/EamReportRepairMapper.java
@@ -6,7 +6,10 @@
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 org.jeecg.modules.eam.vo.FaultTypeStatisticsVO;
import java.util.List;
@@ -35,4 +38,24 @@
     * @return
     */
    List<EquipmentRepairStatistics> equipmentRepairStatistics(@Param("productionIds") List<String> productionIds, @Param("start") String start, @Param("end") String end);
    /**
     * 统计维修状态数据
     * @return
     */
    EquipmentRepairStatusStatistics repairStatusStatistics();
    /**
     * 维修 未完成列表
     * @return
     */
    List<EquipmentRepairListVO> repairList();
    /**
     * 骨折分类统计
     * @param start
     * @param end
     * @return
     */
    List<FaultTypeStatisticsVO> faultTypeStatistics(String start, String end);
}