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

com.hn.utils.table.TableInfo Maven / Gradle / Ivy

There is a newer version: 1.0.18
Show newest version
package com.hn.utils.table;

import lombok.Data;

import java.util.List;

/**
 * 数据库表
 *
 * @author haoniu
 */
@Data
public class TableInfo {

    /**
     * 表名称
     */
    private String tableName;

    /**
     * 表描述
     */
    private String tableComment;

    /**
     * 表的主键列信息
     */
    private ColumnInfo primaryKey;

    /**
     * 表的列名(不包含主键)
     */
    private List columns;

    /**
     * 类名(第一个字母大写)
     */
    private String className;

    /**
     * 类名(第一个字母小写)
     */
    private String classname;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy