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;
|
}
|