com.codingapi.springboot.permission.db.template.SQLTemplate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of springboot-starter-data-permission Show documentation
Show all versions of springboot-starter-data-permission Show documentation
springboot-starter-data-permission project for Spring Boot
package com.codingapi.springboot.permission.db.template;
/**
* @author lorne
* @since 1.0.0
*/
public interface SQLTemplate {
/**
* @param driverName connection driverName
* @return match result
*/
boolean match(String driverName);
/**
* create table sql
* @param tableName table name
* @return create sql
*/
String create(String tableName);
}