yudao-module-mes/src/main/java/cn/iocoder/yudao/module/mes/service/pro/scan/MesProScanEventService.java
@@ -6,6 +6,7 @@ import cn.iocoder.yudao.module.mes.dal.dataobject.pro.scan.MesProScanEventDO; import jakarta.validation.Valid; import java.util.List; import java.util.Map; public interface MesProScanEventService { @@ -14,4 +15,12 @@ PageResult<MesProScanEventDO> getPage(MesProScanEventPageReqVO reqVO); MesProScanEventDO getLatest(String deviceCode); Map<String, Object> getDashboard(); /** * 获得批次下的扫码入库事件列表(按事件时间倒序),用于公开溯源展示最新入库事件 * * @param batchId 批次编号 * @return 事件列表 */ List<MesProScanEventDO> getByBatchId(Long batchId); }