zsh_root
2024-01-02 7b595546af704983dbafcd0d385c8768ddacefc2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
package Method;
 
public class GetDatabaseTable {
    static String[] tables= {
            "tb_achor",
            "tb_department",
            "tb_display",
            "tb_fence",
            "tb_history_power",
            "tb_historyinwarning",
            "tb_icon",
            "tb_kaoqing",
            "tb_map",
            "tb_namelist",
            "tb_offanch",
            "tb_offtag",
            "tb_password",
            "tb_person",
            "tb_realinwarning",
            "tb_realkaoqing",
            "tb_realocation",
            "tb_realpositoin",
            "tb_statusanchor",
            "tb_statustag",
            "tb_style",
            "tb_summarytag",
            "tb_system",
            "tb_tag",
            "tb_tagpower",
            "tb_track",
            "tb_user",
            "tb_warning"
    };
    
    
    public static String[] tables() {
        return tables;
    }
    
    
 
}