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