Blame view

src/main/java/com/huaheng/pc/system/systable/service/SysTableInfoService.java 530 Bytes
mahuandong authored
1
2
3
4
5
6
7
8
9
10
package com.huaheng.pc.system.systable.service;

import com.huaheng.pc.system.systable.domain.SysTableInfo;
import com.baomidou.mybatisplus.extension.service.IService;
    /**
 * Created by Enzo Cotter on 2020/3/20.
 */

public interface SysTableInfoService extends IService<SysTableInfo>{
mahuandong authored
11
12
13
14
15
    /**
     * 查询数据库中所有表格和表注释
     * @return
     */
    Boolean init();
mahuandong authored
16
mahuandong authored
17
18
19
20
21
22
    /**
     * 通过表明查询表信息
     * @param code
     * @return
     */
    SysTableInfo getTableInfoByCode(String code);
mahuandong authored
23
}