企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
``` /** * @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; } }