kimi
2020-05-18 c8aee7b9bfd79cfd741d7e5692520f4f51a31a86
src/main/java/com/highdatas/mdm/mapper/SysViewMapper.java
@@ -1,7 +1,11 @@
package com.highdatas.mdm.mapper;
import com.highdatas.mdm.entity.SysView;
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>
@@ -13,4 +17,6 @@
 */
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);
}