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

com.github.hdy.common.entity.TableEntity Maven / Gradle / Ivy

There is a newer version: 2.0.5
Show newest version
package com.github.hdy.common.entity;

import lombok.Data;

import java.util.List;

/**
 * 表属性
 *
 * @author 贺大爷
 * @date 2018/2/6
 */
@Data
public class TableEntity {
    /**
     * 名称
     */
    private String tableName;
    /**
     * 备注
     */
    private String comments;
    /**
     * 主键
     */
    private ColumnEntity pk;
    /**
     * 列名
     */
    private List columns;
    /**
     * 驼峰类型
     */
    private String caseClassName;
    /**
     * 普通类型
     */
    private String lowerClassName;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy