com.kukababy.plus.pojo.P Maven / Gradle / Ivy
The newest version!
package com.kukababy.plus.pojo;
import java.io.Serializable;
/**
*
* 描述:数据库查询参数对象
*
*
* @author [email protected]
* @date 2019年3月5日 下午10:45:05
*/
public class P implements Serializable {
private String col;
private Object val;
public P() {
super();
}
/**
* @param col
* @param val
*/
public P(String col, Object val) {
super();
this.col = col;
this.val = val;
}
public String getCol() {
return col;
}
public P setCol(String col) {
this.col = col;
return this;
}
public Object getVal() {
return val;
}
public P setVal(Object val) {
this.val = val;
return this;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy