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

com.nyvi.support.entity.TableInfo Maven / Gradle / Ivy

The newest version!
package com.nyvi.support.entity;

import java.util.List;

import com.nyvi.support.enums.IdType;

/**
 * 

* 数据库表反射信息 *

* @author czk */ public class TableInfo { /** * 表名称 */ private String tableName; /** * 表主键ID 类型 */ private IdType idType; /** * 表主键ID 属性名 */ private String keyProperty; /** * 表主键ID 字段名 */ private String keyColumn; /** * 表字段信息列表 */ private List fieldList; public String getTableName() { return tableName; } public void setTableName(String tableName) { this.tableName = tableName; } public IdType getIdType() { return idType; } public void setIdType(IdType idType) { this.idType = idType; } public String getKeyProperty() { return keyProperty; } public void setKeyProperty(String keyProperty) { this.keyProperty = keyProperty; } public String getKeyColumn() { return keyColumn; } public void setKeyColumn(String keyColumn) { this.keyColumn = keyColumn; } public List getFieldList() { return fieldList; } public void setFieldList(List fieldList) { this.fieldList = fieldList; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy