1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| package org.jeecg.modules.system.service;
|
| import org.jeecg.modules.system.entity.SysDataLog;
|
| import com.baomidou.mybatisplus.extension.service.IService;
|
| /**
| * @Description: 数据日志service接口
| * @author: jeecg-boot
| */
| public interface ISysDataLogService extends IService<SysDataLog> {
|
| /**
| * 添加数据日志
| * @param tableName
| * @param dataId
| * @param dataContent
| */
| public void addDataLog(String tableName, String dataId, String dataContent);
|
| }
|
|