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; /** *

* Mapper 接口 *

* * @author kimi * @since 2020-04-15 */ public interface SysViewMapper extends BaseMapper { void insertViewMapping(@Param("tableName") String tableName, @Param("values") String values); List> selectMapVal(@Param("tableName") String tableName, @Param("field") String field,@Param("where") String where,@Param("mapTableName") String mapTableName,@Param("changeField") String changeField); }