#
Junjie
2025-11-27 9e715c16b49a066e627d150fb2d973a8562db8dc
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;
    }
}