1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
| package com.tievd.cube.modules.system.service;
|
| import com.baomidou.mybatisplus.extension.service.IService;
| import com.tievd.cube.commons.model.LogDTO;
| import com.tievd.cube.modules.system.entity.SysLog;
|
| /**
| * 系统日志
| *
| * @author 杨欣武
| * @version 2.4.0
| * @since 2022-05-07
| */
| public interface ISysLogService extends IService<SysLog> {
|
| /**
| * 清空所有日志记录
| */
| void removeAll();
|
| /**
| * 保存日志
| */
| void saveLog(LogDTO dto);
| }
|
|