GenMapper.java
870 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
package com.huaheng.pc.tool.gen.mapper;
import java.util.List;
import com.huaheng.pc.tool.gen.domain.ColumnInfo;
import com.huaheng.pc.tool.gen.domain.TableInfo;
import org.springframework.stereotype.Service;
/**
* 代码生成 数据层
*
* @author huaheng
*/
@Service
public interface GenMapper
{
/**
* 查询ry数据库表信息
*
* @param tableInfo 表信息
* @return 数据库表列表
*/
public List<TableInfo> selectTableList(TableInfo tableInfo);
/**
* 根据表名称查询信息
*
* @param tableName 表名称
* @return 表信息
*/
public TableInfo selectTableByName(String tableName);
/**
* 根据表名称查询列信息
*
* @param tableName 表名称
* @return 列信息
*/
public List<ColumnInfo> selectTableColumnsByName(String tableName);
}