package com.landtool.lanbase.modules.sys.dao; import org.apache.ibatis.annotations.Mapper; import java.util.List; import java.util.Map; /** * @author lanbase * @Description: TODO() * @date 2017-6-23 15:07 */ @Mapper public interface SysGeneratorDao { List> queryList(Map map); int queryTotal(Map map); Map queryTable(String tableName); List> queryColumns(String tableName); }