1.治理暂态事件、波形文件记录解析功能;日志记录功能

2.设备上线、掉线日志记录
This commit is contained in:
2023-09-08 16:04:31 +08:00
parent d537021ffd
commit f91670786f
19 changed files with 503 additions and 69 deletions

View File

@@ -0,0 +1,16 @@
package com.njcn.access.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.njcn.access.pojo.po.CsDeviceOnlineLogs;
/**
* <p>
* 设备状态日志表,记录设备掉线上线的情况 Mapper 接口
* </p>
*
* @author xuyang
* @since 2023-09-08
*/
public interface CsDeviceOnlineLogsMapper extends BaseMapper<CsDeviceOnlineLogs> {
}