1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| package org.jeecg.modules.system.mapper;
|
| import org.apache.ibatis.annotations.Param;
| import org.jeecg.modules.system.entity.SysDataLog;
|
| import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
| public interface SysDataLogMapper extends BaseMapper<SysDataLog>{
| /**
| * 通过表名及数据Id获取最大版本
| * @param tableName
| * @param dataId
| * @return
| */
| public String queryMaxDataVer(@Param("tableName") String tableName,@Param("dataId") String dataId);
|
| }
|
|