dubin
2 天以前 52cbfeb0c93770530965955ca861f3d0a2bedd66
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.service.IService;
 
public interface DeviceDataLogService extends IService<DeviceDataLog> {
 
    int clearLog(int expireDays);
 
    boolean saveBatch(java.util.List<DeviceDataLog> list);
}