|
|
|
@ -19,6 +19,7 @@ public class ITContent implements Cloneable {
|
|
|
|
|
private String sheetID; |
|
|
|
|
private String sheetName; |
|
|
|
|
private String templateName; |
|
|
|
|
private String templatePath; |
|
|
|
|
private String blockName; |
|
|
|
|
/** |
|
|
|
|
* 一些不好定位的位置先用字符串展示出来就好 |
|
|
|
@ -90,6 +91,7 @@ public class ITContent implements Cloneable {
|
|
|
|
|
this.trlString = StringUtils.EMPTY; |
|
|
|
|
this.operatorArray = new ArrayList<>(); |
|
|
|
|
this.holdObject = new Object(); |
|
|
|
|
this.templatePath = StringUtils.EMPTY; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -117,6 +119,7 @@ public class ITContent implements Cloneable {
|
|
|
|
|
result.setJumpAble(content.isJumpAble()); |
|
|
|
|
result.setHoldObject(content.getHoldObject()); |
|
|
|
|
result.setTag(content.getTag()); |
|
|
|
|
result.setTemplatePath(content.getTemplatePath()); |
|
|
|
|
} |
|
|
|
|
return result; |
|
|
|
|
} |
|
|
|
@ -205,6 +208,14 @@ public class ITContent implements Cloneable {
|
|
|
|
|
this.showObject = showObject; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public String getTemplatePath() { |
|
|
|
|
return templatePath; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void setTemplatePath(String templatePath) { |
|
|
|
|
this.templatePath = templatePath; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 添加位置信息 |
|
|
|
|
* |
|
|
|
|