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
package com.iplatform.base.di;
 
/**
 * 数据导入模板信息对象定义。
 * @author 时克英
 * @date 2023-02-07
 */
public class TemplateInfo {
 
    @Override
    public String toString(){
        return new StringBuilder("[tableName=").append(this.tableName)
                .append(", templatePath=").append(this.templatePath)
                .append("]").toString();
    }
 
    /**
     * 返回指定的业务表名称,针对表所有字段输出到模板中。
     * @return
     */
    public String getTableName() {
        return tableName;
    }
 
    public void setTableName(String tableName) {
        this.tableName = tableName;
    }
 
    /**
     * 返回模板生成具体完整路径。
     * @return
     */
    public String getTemplatePath() {
        return templatePath;
    }
 
    public void setTemplatePath(String templatePath) {
        this.templatePath = templatePath;
    }
 
    private String tableName;
    private String templatePath;
}