cn.sylinx.hbatis.ext.xmapper.xml.NameSpace 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.List;
/**
* 命名空间
*
* @author hanqz
*/
public class NameSpace {
/**
* 命名空间ID
*/
private String nameSpaceId;
/**
* 该命名空间所有sql
*/
private List sqlList;
public String getNameSpaceId() {
return nameSpaceId;
}
public void setNameSpaceId(String nameSpaceId) {
this.nameSpaceId = nameSpaceId;
}
public List getSqlList() {
return sqlList;
}
public void setSqlList(List sqlList) {
this.sqlList = sqlList;
}
}