cn.sylinx.hbatis.db.common.FluentSqlParams Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hbatis-core Show documentation
Show all versions of hbatis-core Show documentation
hbatis is a simple orm framework
The newest version!
package cn.sylinx.hbatis.db.common;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
public class FluentSqlParams {
private Class modelClass;
private String selectColumns;
private String selectExpressionColumns;
private boolean distinct;
private boolean count;
private String tableName;
private StringBuilder conditionSQL;
private Map updateColumns;
private Map updateColumnExpression;
private List excludedColumns;
private String groupBy;
private String orderBy;
private String limitSQL;
private List