chenrui
2025-05-07 925a974564f0df25857fd5d9b92889a8b0ac6d68
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.ruoyi.common.config;
 
import org.springframework.stereotype.Component;
 
import java.util.HashSet;
import java.util.Set;
 
@Component
public class IgnoreTableConfig {
 
    public static final Set<String> IGNORE_TABLES = new HashSet<>();
 
    static {
        IGNORE_TABLES.add("sys_config");
        IGNORE_TABLES.add("sys_user");
        IGNORE_TABLES.add("sys_dept");
    }
}