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

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

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 SqlRes { private String whereSql = ""; private List whereVals = new ArrayList(); /** * @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; } }