Commit 63bedb84 authored by neo's avatar neo

[Bugfix] fixed resource set period

parent 7d0fa51e
...@@ -26,7 +26,7 @@ public class PeriodResources { ...@@ -26,7 +26,7 @@ public class PeriodResources {
} }
public void putAllTemplate(List<PeriodTemplate> periodTemplates) { public void putAllTemplate(List<PeriodTemplate> periodTemplates) {
periodTemplates.addAll(periodTemplates); this.periodTemplates.addAll(periodTemplates);
} }
public List<Long> getTemolateIds() { public List<Long> getTemolateIds() {
...@@ -37,11 +37,11 @@ public class PeriodResources { ...@@ -37,11 +37,11 @@ public class PeriodResources {
} }
public void putAllCellTemplate(List<PeriodCellTemplate> periodCellTemplates) { public void putAllCellTemplate(List<PeriodCellTemplate> periodCellTemplates) {
periodCellTemplates.addAll(periodCellTemplates); this.periodCellTemplates.addAll(periodCellTemplates);
} }
public void putAllCellTemplateConfig(List<PeriodCellTemplateConfig> periodCellTemplateConfigs) { public void putAllCellTemplateConfig(List<PeriodCellTemplateConfig> periodCellTemplateConfigs) {
periodCellTemplateConfigs.addAll(periodCellTemplateConfigs); this.periodCellTemplateConfigs.addAll(periodCellTemplateConfigs);
} }
public Long getTemplateGroupId(){ public Long getTemplateGroupId(){
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment