| | |
| | | package com.ruoyi.generator.mapper; |
| | | |
| | | import java.util.List; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.ruoyi.generator.domain.GenTable; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 业务 数据层 |
| | | * |
| | | * @author ruoyi |
| | | */ |
| | | public interface GenTableMapper |
| | | public interface GenTableMapper extends BaseMapper<GenTable> |
| | | { |
| | | /** |
| | | * 查询业务列表 |
| | |
| | | public List<GenTable> selectDbTableListByNames(String[] tableNames); |
| | | |
| | | /** |
| | | * 查询所有表信息 |
| | | * |
| | | * @return 表信息集合 |
| | | */ |
| | | public List<GenTable> selectGenTableAll(); |
| | | |
| | | /** |
| | | * 查询表ID业务信息 |
| | | * |
| | | * @param id 业务ID |