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