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

cn.vonce.sql.bean.TableInfo Maven / Gradle / Ivy

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

    /**
     * 名称
     */
    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