src/main/java/com/zy/asrs/service/impl/WrkMastLogServiceImpl.java
@@ -27,6 +27,15 @@ } @Override public Long countInboundHistoryBySourceStaNo(Date startTime, Date endTime, Integer sourceStaNo) { if (sourceStaNo == null) { return 0L; } Long count = this.baseMapper.countInboundHistoryBySourceStaNo(startTime, endTime, sourceStaNo); return count == null ? 0L : count; } @Override public R inventoryFlowList(Integer curr, Integer limit, Map<String, Object> param) { Page<InventoryFlowDto> page = new Page<>(); page.setCurrent(curr);