|
|
@ -54,6 +54,7 @@ public class SchoolCountSummary {
|
|
|
|
|
|
|
|
|
|
|
|
// 循环处理每种学校类型
|
|
|
|
// 循环处理每种学校类型
|
|
|
|
for (String schoolType : yearConfig.keySet()) {
|
|
|
|
for (String schoolType : yearConfig.keySet()) {
|
|
|
|
|
|
|
|
log(String.format("开始处理学校类型:%s", schoolType));
|
|
|
|
// 获取当前学校类型的配置
|
|
|
|
// 获取当前学校类型的配置
|
|
|
|
JSONObject typeConfig = yearConfig.getJSONObject(schoolType);
|
|
|
|
JSONObject typeConfig = yearConfig.getJSONObject(schoolType);
|
|
|
|
Map<String, ColumnConfig> columnConfigs = new HashMap<>();
|
|
|
|
Map<String, ColumnConfig> columnConfigs = new HashMap<>();
|
|
|
@ -74,6 +75,7 @@ public class SchoolCountSummary {
|
|
|
|
|
|
|
|
|
|
|
|
// 处理当前学校类型的数据
|
|
|
|
// 处理当前学校类型的数据
|
|
|
|
allResults.put(schoolType, processSheet(filePath, schoolType, skipRows, columnConfigs));
|
|
|
|
allResults.put(schoolType, processSheet(filePath, schoolType, skipRows, columnConfigs));
|
|
|
|
|
|
|
|
log(String.format("处理学校类型:%s完成", schoolType));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
log(String.format("处理年份:%s完成", year));
|
|
|
|
log(String.format("处理年份:%s完成", year));
|
|
|
|
|
|
|
|
|
|
|
|