#
Junjie
3 天以前 5bbd1fd72e0802c9f0cfd25c13030316c72097af
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);
}