fix: 日志查看页面优化

This commit is contained in:
2024-08-08 09:22:20 +08:00
parent fcbe8c92ed
commit 153dcb1964
2 changed files with 13 additions and 50 deletions

View File

@@ -1,48 +0,0 @@
//package org.nl.system.service.lucene;
//
//import org.nl.system.service.lucene.dto.LuceneLogDto;
//
//import java.io.IOException;
//
///**
// * <p>
// * 日志检索服务
// * </p>
// *
// * @author generator
// * @since 2023-11-16
// */
//public interface LuceneExecuteLogService {
// /**
// * 设备光电变化实时光电信号
// *
// * @param device_code 设备编号
// * @param key plc信号
// * @param value plc信号值
// */
// void deviceItemValue(String device_code, String key, String value);
//
// /**
// * 设备执行日志,会保留历史记录
// *
// * @param luceneLogDto 日志结果对象
// */
// void deviceExecuteLog(LuceneLogDto luceneLogDto);
//
// /**
// * 接口日志,会保留历史记录
// * @param luceneLogDto 日志结果对象
// * @throws IOException
// */
// void interfaceExecuteLog(LuceneLogDto luceneLogDto) throws IOException;
//
// /**
// * 设备执行日志,会保留历史记录
// *
// * @param name 日志名称
// * @param message 日志信息
// */
// void extLog(String name, String message);
//
//
//}