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