com.lin.entity.TableInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sql-faker Show documentation
Show all versions of sql-faker Show documentation
A lightweight SQL data creator.
package com.lin.entity;
/**
* 数据表信息
* @author lkmc2
* @since 1.0.4
*/
public interface TableInfo {
/**
* 获取表名
* @return 表名
*/
String getTableName();
/**
* 获取表注释
* @return 表注释
*/
String getTableComment();
}