zhangherong
2025-05-12 d3749bb6d1cf618ac0c5dafe09160d76dd2d3e26
lxzn-module-eam/src/main/java/org/jeecg/modules/eam/service/IEamReportRepairService.java
@@ -7,7 +7,12 @@
import org.jeecg.modules.eam.entity.EamReportRepair;
import org.jeecg.modules.eam.entity.EamWeekMaintenanceOrderDetail;
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.time.LocalDate;
import java.util.List;
/**
@@ -46,4 +51,40 @@
     * @return
     */
    EamReportRepair add(EamReportRepair eamReportRepair);
    /**
     * 编辑
     * @param eamReportRepair
     * @return
     */
    boolean edit(EamReportRepair eamReportRepair);
    /**
     * 查询报修列表
     * @param productionId
     * @param firstOfMonth
     * @param today
     * @return
     */
    List<EquipmentRepairStatistics> equipmentRepairStatistics(String productionId, LocalDate firstOfMonth, LocalDate today);
    /**
     * 维修状态统计
     * @return
     */
    EquipmentRepairStatusStatistics repairStatusStatistics();
    /**
     * 维修列表
     * @return
     */
    List<EquipmentRepairListVO> repairList();
    /**
     * 故障分类统计
     * @param start
     * @param end
     * @return
     */
    List<FaultTypeStatisticsVO> faultTypeStatistics(String start, String end);
}