#
Junjie
昨天 ac3fe6f98301774a4dde3a581fc5f47ea4fab4d1
1
2
3
4
5
6
7
8
9
10
11
package com.zy.asrs.service;
 
import com.zy.asrs.entity.DeviceDataLog;
import com.baomidou.mybatisplus.extension.service.IService;
 
public interface DeviceDataLogService extends IService<DeviceDataLog> {
 
    int clearLog(int expireDays);
 
    boolean saveBatch(java.util.List<DeviceDataLog> list);
}