All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.kukababy.plus.pager.SqlInfo Maven / Gradle / Ivy

The newest version!
package com.kukababy.plus.pager;

import java.util.ArrayList;
import java.util.List;

/**
 * 
 * 描述:
 * 
* * @author [email protected] * @date 2019年3月5日 下午10:46:20 */ public class SqlInfo { /** * where 部分的sql */ private String whereSql = ""; /** * where 部分的?对应的值 */ private List whereVals = new ArrayList(); /** * 最终的SQL语句 ,全部替换为? */ private String execSql = ""; /** * 所有?对应的值 */ private List execVals = new ArrayList(); /** * @return the execSql */ public String getExecSql() { return execSql; } /** * @param execSql the execSql to set */ public void setExecSql(String execSql) { this.execSql = execSql; } /** * @return the execVals */ public List getExecVals() { return execVals; } /** * @param execVals the execVals to set */ public void setExecVals(List execVals) { this.execVals = execVals; } /** * @return the whereSql */ public String getWhereSql() { return whereSql; } /** * @param whereSql * the whereSql to set */ public void setWhereSql(String whereSql) { this.whereSql = whereSql; } /** * @return the whereVals */ public List getWhereVals() { return whereVals; } /** * @param whereVals * the whereVals to set */ public void setWhereVals(List whereVals) { this.whereVals = whereVals; } }