cn.vonce.sql.bean.TableInfo 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.
The newest version!
package cn.vonce.sql.bean;
/**
* 表信息
*
* @author Jovi
* @version 1.0
* @email [email protected]
* @date 2021-10-15 15:42:22
*/
public class TableInfo {
/**
* schema
*/
private String schema;
/**
* 名称
*/
private String name;
/**
* 注释
*/
private String remarks;
public String getSchema() {
return schema;
}
public void setSchema(String schema) {
this.schema = schema;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getRemarks() {
return remarks;
}
public void setRemarks(String remarks) {
this.remarks = remarks;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy