package org.dromara.generator.mapper;
|
|
import com.baomidou.dynamic.datasource.annotation.DS;
|
import com.baomidou.mybatisplus.annotation.InterceptorIgnore;
|
import org.dromara.common.mybatis.core.mapper.BaseMapperPlus;
|
import org.dromara.generator.domain.GenTable;
|
|
import java.util.List;
|
|
/**
|
* 业务 数据层
|
*
|
* @author Lion Li
|
*/
|
@InterceptorIgnore(dataPermission = "true", tenantLine = "true")
|
public interface GenTableMapper extends BaseMapperPlus<GenTable, GenTable> {
|
|
/**
|
* 查询所有表信息
|
*
|
* @return 表信息集合
|
*/
|
List<GenTable> selectGenTableAll();
|
|
/**
|
* 查询表ID业务信息
|
*
|
* @param id 业务ID
|
* @return 业务信息
|
*/
|
GenTable selectGenTableById(Long id);
|
|
/**
|
* 查询表名称业务信息
|
*
|
* @param tableName 表名称
|
* @return 业务信息
|
*/
|
GenTable selectGenTableByName(String tableName);
|
|
/**
|
* 查询指定数据源下的所有表名列表
|
*
|
* @param dataName 数据源名称,用于选择不同的数据源
|
* @return 当前数据库中的表名列表
|
*
|
* @DS("") 使用默认数据源执行查询操作
|
*/
|
@DS("")
|
List<String> selectTableNameList(String dataName);
|
}
|