1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| package com.highdatas.mdm.mapper;
|
| import com.baomidou.mybatisplus.mapper.BaseMapper;
| import com.highdatas.mdm.entity.SysView;
| import org.apache.ibatis.annotations.Param;
|
| import java.util.List;
| import java.util.Map;
|
| /**
| * <p>
| * Mapper 接口
| * </p>
| *
| * @author kimi
| * @since 2020-04-15
| */
| public interface SysViewMapper extends BaseMapper<SysView> {
|
| void insertViewMapping(@Param("tableName") String tableName, @Param("values") String values);
| List<Map<String,Object>> selectMapVal(@Param("tableName") String tableName, @Param("field") String field,@Param("where") String where,@Param("mapTableName") String mapTableName,@Param("changeField") String changeField);
| }
|
|