package com.landtool.lanbase.modules.sys.service; import java.util.List; import java.util.Map; /** * @author lanbase * @Description: TODO() * @date 2017-6-23 15:07 */ public interface SysGeneratorService { List> queryList(Map map); int queryTotal(Map map); Map queryTable(String tableName); List> queryColumns(String tableName); byte[] generatorCode(String[] tableNames); }