cn.sylinx.hbatis.ext.xmapper.xml.QueryMapping Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hbatis-xmapper Show documentation
Show all versions of hbatis-xmapper Show documentation
hbatis-xmapper is a simple orm framework, extends hbatis-core
The newest version!
package cn.sylinx.hbatis.ext.xmapper.xml;
import java.util.Map;
public class QueryMapping {
/**
* 查询返回的类对象
*/
private String returnClass;
/**
* 字段映射描述
*/
private Map map;
public String getReturnClass() {
return returnClass;
}
public void setReturnClass(String returnClass) {
this.returnClass = returnClass;
}
public Map getMap() {
return map;
}
public void setMap(Map map) {
this.map = map;
}
}