tk.mybatis.mapper.mapperhelper.resolve.EntityResolve 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.mapper.mapperhelper.resolve;
import tk.mybatis.mapper.entity.Config;
import tk.mybatis.mapper.entity.EntityTable;
/**
* 解析实体类接口
*
* @author liuzh
*/
public interface EntityResolve {
/**
* 解析类为 EntityTable
*
* @param entityClass
* @param config
* @return
*/
EntityTable resolveEntity(Class> entityClass, Config config);
}