cn.vonce.sql.service.TableService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vonce-sqlbean-core Show documentation
Show all versions of vonce-sqlbean-core Show documentation
This is the core project of Sqlbean.
package cn.vonce.sql.service;
import java.util.List;
/**
* 表结构业务接口
*
* @author Jovi
* @version 1.0
* @email [email protected]
* @date 2020/6/30 15:40
*/
public interface TableService {
/**
* 删除表结构
*
* @return
*/
void dropTable();
/**
* 创建表结构
*
* @return
*/
void createTable();
/**
* 删除并创建表结构
*/
void dropAndCreateTable();
/**
* 获取表名列表
*
* @return
*/
List getTableList();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy