tk.mybatis.spring.annotation.BaseProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mapper Show documentation
Show all versions of mapper Show documentation
Mybatis 通用 Mapper Jar 集成
package tk.mybatis.spring.annotation;
/**
* @author liuzh
*/
public class BaseProperties {
public static final String MYBATIS_PREFIX = "mybatis";
/**
* Base packages to scan for MyBatis interfaces. Note that only interfaces
* with at least one method will be registered; concrete classes will be
* ignored.
*/
private String[] basePackages;
public String[] getBasePackages() {
return basePackages;
}
public void setBasePackages(String[] basePackages) {
this.basePackages = basePackages;
}
}