cn.tangjiabao.halodb.core.bean.SqlParmeter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of haloDb Show documentation
Show all versions of haloDb Show documentation
Orm whitch The highest development efficiency and Efficiency is the fastest
package cn.tangjiabao.halodb.core.bean;
import java.util.Map;
/**
*sql和参数
* @author [email protected]
* @date 2015-6-14 下午12:45:54
*/
public class SqlParmeter {
private String sql;
private Object[] parameters;
private Integer idModel;
private String idName;
private Map aliasMap;
public String getSql() {
return sql;
}
public void setSql(String sql) {
this.sql = sql;
}
public Object[] getParameters() {
return parameters;
}
public void setParameters(Object[] parameters) {
this.parameters = parameters;
}
public Integer getIdModel() {
return idModel;
}
public void setIdModel(Integer idModel) {
this.idModel = idModel;
}
public String getIdName() {
return idName;
}
public void setIdName(String idName) {
this.idName = idName;
}
public Map getAliasMap() {
return aliasMap;
}
public void setAliasMap(Map aliasMap) {
this.aliasMap = aliasMap;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy