tk.mybatis.mapper.gensql.GenSql 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 集成
The newest version!
package tk.mybatis.mapper.gensql;
import tk.mybatis.mapper.entity.EntityColumn;
import tk.mybatis.mapper.entity.EntityTable;
/**
* 生成 SQL,初始化时执行
*
* @author liuzh
*/
public interface GenSql {
String genSql(EntityTable entityTable, EntityColumn entityColumn);
class NULL implements GenSql {
@Override
public String genSql(EntityTable entityTable, EntityColumn entityColumn) {
throw new UnsupportedOperationException();
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy