cc.iliz.mybatis.shading.strategy.BaseTableStrategy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mybatis-sharding Show documentation
Show all versions of mybatis-sharding Show documentation
A sharding based on mybatis
package cc.iliz.mybatis.shading.strategy;
import cc.iliz.mybatis.shading.sqltable.SqlTableParser;
public class BaseTableStrategy implements TableStrategy {
@Override
public String getShadeTableName(SqlTableParser parser,String tableName, Object param) {
// TODO Auto-generated method stub
return null;
}
}