3
13693261870
2022-09-16 63ba114e70e380442fcbed4a5157ee52c9491216
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.landtool.lanbase.modules.sys.dao;
 
import org.apache.ibatis.annotations.Mapper;
 
import java.util.List;
import java.util.Map;
 
/**
 * @author lanbase
 * @Description: TODO()
 * @date 2017-6-23 15:07
 */
@Mapper
public interface SysGeneratorDao {
 
    List<Map<String, Object>> queryList(Map<String, Object> map);
 
    int queryTotal(Map<String, Object> map);
 
    Map<String, String> queryTable(String tableName);
 
    List<Map<String, String>> queryColumns(String tableName);
 
}