cuilei
7 天以前 58020f3d711d4baa16ef092c2ea826071c7d23b9
lxzn-module-eam/src/main/java/org/jeecg/modules/eam/mapper/EamInspectionOrderMapper.java
@@ -8,6 +8,9 @@
import org.apache.ibatis.annotations.Param;
import org.jeecg.modules.eam.entity.EamInspectionOrder;
import org.jeecg.modules.eam.entity.EamWeekMaintenanceOrder;
import org.jeecg.modules.eam.vo.EquipmentInspectionStatistics;
import java.util.List;
/**
 * @Description: 点检工单
@@ -24,4 +27,15 @@
     * @return
     */
    IPage<EamInspectionOrder> queryPageList(Page<EamInspectionOrder> page, @Param(Constants.WRAPPER) QueryWrapper<EamInspectionOrder> queryWrapper);
    /**
     * 点检统计
     * @param productionIds
     * @param start
     * @param end
     * @return
     */
    List<EquipmentInspectionStatistics> equipmentInspectionStatistics(@Param("productionIds") List<String> productionIds, @Param("start") String start, @Param("end") String end);
    List<EamInspectionOrder> selectUnReceivedInspectionOrder();
}