| | |
| | | package com.lf.server.service.all; |
| | | |
| | | import cn.hutool.db.meta.Table; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
| | | import com.lf.server.helper.AesHelper; |
| | | import com.lf.server.helper.ClassHelper; |
| | |
| | | return null; |
| | | } |
| | | |
| | | Table annotation = (Table) clazz.getAnnotation(Table.class); |
| | | TableName annotation = (TableName) clazz.getAnnotation(TableName.class); |
| | | |
| | | String tabName = annotation.getTableName(); |
| | | String tabName = annotation.value(); |
| | | if (tabName != null && !tabMap.containsKey(className)) { |
| | | tabMap.put(className, tabName); |
| | | } |