shikeyin
2024-01-11 65da8373531677b1c37a98f53eaa30c892f35e5a
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
package com.iplatform.generator.config;
 
import org.springframework.boot.context.properties.ConfigurationProperties;
 
@ConfigurationProperties(prefix = "iplatform.gen")
//@PropertySource(value = { "classpath:generator.yml" })
public class JdbcGeneratorProperties {
 
    public String getAuthor() {
        return author;
    }
 
    public void setAuthor(String author) {
        this.author = author;
    }
 
    public String getPackageName() {
        return packageName;
    }
 
    public void setPackageName(String packageName) {
        this.packageName = packageName;
    }
 
    public String getTablePrefix() {
        return tablePrefix;
    }
 
    public void setTablePrefix(String tablePrefix) {
        this.tablePrefix = tablePrefix;
    }
 
    /** 作者 */
    public String author;
 
    /** 生成包路径 */
    public String packageName;
 
    public Boolean getAutoRemovePre() {
        return autoRemovePre;
    }
 
    public void setAutoRemovePre(Boolean autoRemovePre) {
        this.autoRemovePre = autoRemovePre;
    }
 
    /** 自动去除表前缀,默认是false */
    public Boolean autoRemovePre;
 
    /** 表前缀(类名不会包含表前缀) */
    public String tablePrefix;
}