com.lifeonwalden.codeGenerator.dll.DatabaseGenerator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of DDLGenerator Show documentation
Show all versions of DDLGenerator Show documentation
A tool to auto generate MyBatis mapping/DAO interface, DTO, and DDL based on the table definition
package com.lifeonwalden.codeGenerator.dll;
import com.lifeonwalden.codeGenerator.bean.Database;
import com.lifeonwalden.codeGenerator.bean.config.Config;
public interface DatabaseGenerator {
String generate(Database database, Config config);
}