xm
2024-06-14 722af26bc6fec32bb289b1df51a9016a4935610f
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
package com.dl.generator.config;
 
import org.springframework.beans.factory.annotation.Value;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.context.annotation.PropertySource;
import org.springframework.stereotype.Component;
 
/**
 * 读取代码生成相关配置
 *
 * @author dl
 */
@Component
@ConfigurationProperties(prefix = "gen")
@PropertySource(value = {"classpath:generator.yml"}, encoding = "UTF-8")
public class GenConfig {
 
    /**
     * 作者
     */
    public static String author;
 
    /**
     * 生成包路径
     */
    public static String packageName;
 
    /**
     * 自动去除表前缀,默认是false
     */
    public static boolean autoRemovePre;
 
    /**
     * 表前缀(类名不会包含表前缀)
     */
    public static String tablePrefix;
 
    public static String getAuthor() {
        return author;
    }
 
    @Value("${author}")
    public void setAuthor(String author) {
        GenConfig.author = author;
    }
 
    public static String getPackageName() {
        return packageName;
    }
 
    @Value("${packageName}")
    public void setPackageName(String packageName) {
        GenConfig.packageName = packageName;
    }
 
    public static boolean getAutoRemovePre() {
        return autoRemovePre;
    }
 
    @Value("${autoRemovePre}")
    public void setAutoRemovePre(boolean autoRemovePre) {
        GenConfig.autoRemovePre = autoRemovePre;
    }
 
    public static String getTablePrefix() {
        return tablePrefix;
    }
 
    @Value("${tablePrefix}")
    public void setTablePrefix(String tablePrefix) {
        GenConfig.tablePrefix = tablePrefix;
    }
}