cn.vonce.sql.bean.Group 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.
The newest version!
package cn.vonce.sql.bean;
import java.io.Serializable;
/**
* Group By
*/
public class Group implements Serializable {
private Column column;
public Group() {
}
public Group(Column column) {
this.column = column;
}
public Group(String tableAlias, String name) {
column = new Column(tableAlias, name, "");
}
public Column getColumn() {
return column;
}
public void setColumn(Column column) {
this.column = column;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy