干燥机配套车间生产管理系统/云平台服务端
baoshiwei
2024-12-06 3f911e9d069c67905a54244809b829d918bc7d38
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);
 
}