|
@@ -202,7 +202,7 @@ public class GenTableServiceImpl implements IGenTableService {
|
|
|
}
|
|
|
|
|
|
List<Table<?>> tableList = tablesMap.values().stream()
|
|
|
- .filter(x -> !StringUtils.containsAnyIgnoreCase(x.getName(), TABLE_IGNORE))
|
|
|
+ .filter(x -> !startWithAnyIgnoreCase(x.getName(), TABLE_IGNORE))
|
|
|
.filter(x -> tableNameSet.contains(x.getName())).toList();
|
|
|
|
|
|
if (CollUtil.isEmpty(tableList)) {
|