mirror of
				https://github.com/dromara/RuoYi-Vue-Plus.git
				synced 2025-11-04 16:23:42 +08:00 
			
		
		
		
	fix 修复 代码生成 表名中间带有特殊字符被过滤问题 改为开头过滤
This commit is contained in:
		@@ -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)) {
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user