#
Junjie
2025-11-27 7777ea1d5fc8b7dab64944f0413901d034cf1347
src/main/java/com/zy/asrs/service/impl/DeviceDataLogServiceImpl.java
@@ -13,4 +13,12 @@
    public int clearLog() {
        return this.baseMapper.clearLog();
    }
    @Override
    public boolean saveBatch(java.util.List<DeviceDataLog> list) {
        if (list == null || list.isEmpty()) {
            return true;
        }
        return this.baseMapper.insertBatch(list) > 0;
    }
}