package com.whyc.pojo;
|
|
/**
|
* information_schema.tables表实体类
|
*/
|
public class Tables {
|
|
private String tableSchema;
|
private String tableName;
|
|
public String getTableSchema() {
|
return tableSchema;
|
}
|
|
public void setTableSchema(String tableSchema) {
|
this.tableSchema = tableSchema;
|
}
|
|
public String getTableName() {
|
return tableName;
|
}
|
|
public void setTableName(String tableName) {
|
this.tableName = tableName;
|
}
|
}
|