123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148 |
- package com.boman.gen.service;
- import java.util.List;
- import java.util.Map;
- import com.boman.common.core.web.domain.AjaxResult;
- import com.boman.domain.GenTable;
- /**
- * 业务 服务层
- *
- * @author ruoyi
- */
- public interface IGenTableService {
- /**
- * 查询业务列表
- *
- * @param genTable 业务信息
- * @return 业务集合
- */
- public List<GenTable> selectGenTableList(GenTable genTable);
- /**
- * 查询据库列表
- *
- * @param genTable 业务信息
- * @return 数据库表集合
- */
- public List<GenTable> selectDbTableList(GenTable genTable);
- /**
- * 查询据库列表
- *
- * @param tableNames 表名称组
- * @return 数据库表集合
- */
- public List<GenTable> selectDbTableListByNames(String[] tableNames);
- /**
- * 查询表名称业务信息
- *
- * @param tableName 表名称
- * @return 业务信息
- */
- GenTable selectGenTableByName(String tableName);
- /**
- * 查询所有表信息
- *
- * @return 表信息集合
- */
- public List<GenTable> selectGenTableAll();
- /**
- * 查询业务信息
- *
- * @param id 业务ID
- * @return 业务信息
- */
- public GenTable selectGenTableById(Long id);
- /**
- * 查询业务信息
- *
- * @param id 业务ID
- * @return 业务信息
- */
- public GenTable getByTableId(Long id);
- /**
- * 修改业务
- *
- * @param genTable 业务信息
- * @return 结果
- */
- public void updateGenTable(GenTable genTable);
- /**
- * 删除业务信息
- *
- * @param tableIds 需要删除的表数据ID
- * @return 结果
- */
- public void deleteGenTableByIds(Long[] tableIds);
- /**
- * 导入表结构
- *
- * @param tableList 导入表列表
- */
- public void importGenTable(List<GenTable> tableList);
- /**
- * 预览代码
- *
- * @param tableId 表编号
- * @return 预览数据列表
- */
- public Map<String, String> previewCode(Long tableId);
- /**
- * 生成代码(下载方式)
- *
- * @param tableName 表名称
- * @return 数据
- */
- public byte[] downloadCode(String tableName);
- /**
- * 生成代码(自定义路径)
- *
- * @param tableName 表名称
- * @return 数据
- */
- public void generatorCode(String tableName);
- /**
- * 同步数据库
- *
- * @param tableName 表名称
- */
- public void synchDb(String tableName);
- /**
- * 批量生成代码(下载方式)
- *
- * @param tableNames 表数组
- * @return 数据
- */
- public byte[] downloadCode(String[] tableNames);
- /**
- * 修改保存参数校验
- *
- * @param genTable 业务信息
- */
- public void validateEdit(GenTable genTable);
- /**
- * 代码生成业务新增
- *
- * @param genTable
- * @return
- */
- public AjaxResult insertGenTable(GenTable genTable);
- public String checkTableNameUnique(GenTable genTable);
- }
|