cn.sylinx.hbatis.ext.xmapper.repository.RepositoryImpl 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
package cn.sylinx.hbatis.ext.xmapper.repository;
import cn.sylinx.hbatis.ext.common.repository.CommonRepositoryImpl;
public class RepositoryImpl extends CommonRepositoryImpl implements Repository {
public RepositoryImpl() {
}
public RepositoryImpl(String datasourceName) {
super(datasourceName);
}
}