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

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

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

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

/**
 * 
 * 描述:
 * 
* * @author [email protected] * @date 2019年6月29日 下午2:46:20 */ public class CustSqlInfo { /** * 最终的SQL语句 ,全部替换为? */ private String execSql = ""; /** * 所有?对应的值 */ private List execVals = new ArrayList(); /** * */ public CustSqlInfo() { super(); // TODO Auto-generated constructor stub } /** * @param execSql * @param execVals */ public CustSqlInfo(String execSql, List execVals) { super(); this.execSql = execSql; this.execVals = execVals; } /** * @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; } }