All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.vonce.sql.service.TableService Maven / Gradle / Ivy

There is a newer version: 1.7.0-beta1
Show newest version
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