2023-05-21 11:08:55 +08:00
|
|
|
|
using ZR.Model;
|
2021-08-23 16:57:25 +08:00
|
|
|
|
using ZR.Model.System;
|
2023-05-21 11:08:55 +08:00
|
|
|
|
using ZR.Model.System.Dto;
|
2021-08-23 16:57:25 +08:00
|
|
|
|
|
2021-09-16 19:35:17 +08:00
|
|
|
|
namespace ZR.Service.System.IService
|
2021-08-23 16:57:25 +08:00
|
|
|
|
{
|
2021-09-27 08:06:09 +08:00
|
|
|
|
public interface ISysOperLogService
|
2021-08-23 16:57:25 +08:00
|
|
|
|
{
|
|
|
|
|
|
public void InsertOperlog(SysOperLog operLog);
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 查询系统操作日志集合
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="operLog">操作日志对象</param>
|
|
|
|
|
|
/// <returns>操作日志集合</returns>
|
2023-05-21 11:08:55 +08:00
|
|
|
|
public PagedInfo<SysOperLog> SelectOperLogList(SysOperLogQueryDto operLog);
|
2021-08-23 16:57:25 +08:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 清空操作日志
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public void CleanOperLog();
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 批量删除系统操作日志
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="operIds">需要删除的操作日志ID</param>
|
|
|
|
|
|
/// <returns>结果</returns>
|
|
|
|
|
|
public int DeleteOperLogByIds(long[] operIds);
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 查询操作日志详细
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="operId">操作ID</param>
|
|
|
|
|
|
/// <returns>操作日志对象</returns>
|
|
|
|
|
|
public SysOperLog SelectOperLogById(long operId);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|