cn.vonce.sql.bean.SqlField Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vonce-sqlbean-core Show documentation
Show all versions of vonce-sqlbean-core Show documentation
This is the core project of Sqlbean.
package cn.vonce.sql.bean;
import java.io.Serializable;
public class SqlField implements Serializable {
public SqlField() {
}
public SqlField(String tableAlias, String name) {
this.tableAlias = tableAlias;
this.name = name;
}
public SqlField(String schema, String tableAlias, String name) {
this.schema = schema;
this.tableAlias = tableAlias;
this.name = name;
}
private String schema = "";
private String tableAlias = "";
private String name = "";
public String getSchema() {
return schema;
}
public void setSchema(String schema) {
this.schema = schema;
}
public String getTableAlias() {
return tableAlias;
}
public void setTableAlias(String tableAlias) {
this.tableAlias = tableAlias;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
@Override
public String toString() {
return "SqlField{" +
"schema='" + schema + '\'' +
", tableAlias='" + tableAlias + '\'' +
", name='" + name + '\'' +
'}';
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy