#
luxiaotao1123
2024-04-12 5259c8d163b1d20659364e9b240f77c975a7067b
1
2
3
4
5
6
7
8
9
10
package com.zy.asrs.wcs.rcs.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.zy.asrs.wcs.rcs.entity.DeviceDataLog;
 
public interface DeviceDataLogService extends IService<DeviceDataLog> {
 
    int clearLog();//清理超过24小时日志数据
 
}