🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
``` /** * @author 张跃帅 * @Description: 表-工具 * @date 2020/08/12 */ public class TableUtil { /** * 获取-表标题 */ public static String getTableTitle(String tableName) { // 变量 String tableTitle = null; // 判断 if (StrUtil.isNotBlank(tableName)) { // 获取指定表信息 TableModel table = MybatisDbRun.getTable(tableName); // 判断 if (ObjectUtil.isNotNull(table)) { // 赋值 tableTitle = table.getTableTitle(); } } // 返回 return tableTitle; } }