Helius
2021-02-26 de04085526eda992155716eda98af621ad681e4e
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
package com.matrix.codeGeneration.model;
 
import java.util.Map;
 
 
/**每一个codeFile 代表一个要生成的文件
 * 
 * @author jiangyouyao
 *
 */
public class CodeFile {
 
    /**
     * 模板文件名称
     */
    private String fileName;
    /**
     * 模板文件保存地址
     */
    private String savePath;
    
    /**
     * 模型文件地址
     */
    private String templateName;
    
    
    public String getTemplateName() {
        return templateName;
    }
 
    public void setTemplateName(String templateName) {
        this.templateName = templateName;
    }
 
    /**
     * 模板文件需要的数据
     */
    private Map<String, Object> data;
 
    public String getFileName() {
        return fileName;
    }
 
    public void setFileName(String fileName) {
        this.fileName = fileName;
    }
 
    public String getSavePath() {
        return savePath;
    }
 
    public void setSavePath(String savePath) {
        this.savePath = savePath;
    }
 
    public Map<String, Object> getData() {
        return data;
    }
 
    public void setData(Map<String, Object> data) {
        this.data = data;
    }
 
}