#
Junjie
2025-11-19 5fb7dae61f9d6c38c37014cf27f28107c6f52e74
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;
    }
}