|
|
@@ -1,7 +1,6 @@
|
|
|
package com.doc.system.service;
|
|
|
|
|
|
import com.doc.system.domain.SysOperLog;
|
|
|
-import com.doc.system.domain.vo.LogAnalVO;
|
|
|
import com.doc.system.domain.vo.LogCalcVO;
|
|
|
|
|
|
import java.util.List;
|
|
|
@@ -9,21 +8,20 @@ import java.util.Map;
|
|
|
|
|
|
/**
|
|
|
* 操作日志 服务层
|
|
|
- *
|
|
|
+ *
|
|
|
* @author ruoyi
|
|
|
*/
|
|
|
-public interface ISysOperLogService
|
|
|
-{
|
|
|
+public interface ISysOperLogService {
|
|
|
/**
|
|
|
* 新增操作日志
|
|
|
- *
|
|
|
+ *
|
|
|
* @param operLog 操作日志对象
|
|
|
*/
|
|
|
public void insertOperlog(SysOperLog operLog);
|
|
|
|
|
|
/**
|
|
|
* 查询系统操作日志集合
|
|
|
- *
|
|
|
+ *
|
|
|
* @param operLog 操作日志对象
|
|
|
* @return 操作日志集合
|
|
|
*/
|
|
|
@@ -31,7 +29,7 @@ public interface ISysOperLogService
|
|
|
|
|
|
/**
|
|
|
* 批量删除系统操作日志
|
|
|
- *
|
|
|
+ *
|
|
|
* @param operIds 需要删除的操作日志ID
|
|
|
* @return 结果
|
|
|
*/
|
|
|
@@ -39,7 +37,7 @@ public interface ISysOperLogService
|
|
|
|
|
|
/**
|
|
|
* 查询操作日志详细
|
|
|
- *
|
|
|
+ *
|
|
|
* @param operId 操作ID
|
|
|
* @return 操作日志对象
|
|
|
*/
|
|
|
@@ -52,24 +50,23 @@ public interface ISysOperLogService
|
|
|
|
|
|
/**
|
|
|
* 查询统计数据
|
|
|
+ *
|
|
|
* @param operLog input
|
|
|
* @return 结果集
|
|
|
*/
|
|
|
List<LogCalcVO> selectOperLogCalc(SysOperLog operLog);
|
|
|
- /**
|
|
|
- * 查询分析数据
|
|
|
- * @param operLog input
|
|
|
- * @return 结果集
|
|
|
- */
|
|
|
- List<LogAnalVO> selectOperLogAnal(SysOperLog operLog);
|
|
|
+
|
|
|
/**
|
|
|
* 查询按类型统计数据
|
|
|
+ *
|
|
|
* @param operLog input
|
|
|
* @return 结果集
|
|
|
*/
|
|
|
List<Map<String, Object>> selectTypeCalc(SysOperLog operLog);
|
|
|
+
|
|
|
/**
|
|
|
* 查询按时间统计数据
|
|
|
+ *
|
|
|
* @param operLog input
|
|
|
* @return 结果集
|
|
|
*/
|