[测评系统]--测评系统核心代码库
wzp
2025-08-01 95eb8a2a75cbeebcb3393d404c1952bd59b8989a
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
package com.ots.framework.config;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;
 
@Component
@ConfigurationProperties(prefix = "gen")
public class GenConfig {
    
    public static String author;
    
    public static String packageName;
    
    public static String autoRemovePre;
    
    public static String tablePrefix;
    public static String getAuthor() {
        return author;
    }
    public void setAuthor(String author) {
        GenConfig.author = author;
    }
    public static String getPackageName() {
        return packageName;
    }
    public void setPackageName(String packageName) {
        GenConfig.packageName = packageName;
    }
    public static String getAutoRemovePre() {
        return autoRemovePre;
    }
    public void setAutoRemovePre(String autoRemovePre) {
        GenConfig.autoRemovePre = autoRemovePre;
    }
    public static String getTablePrefix() {
        return tablePrefix;
    }
    public void setTablePrefix(String tablePrefix) {
        GenConfig.tablePrefix = tablePrefix;
    }
}