Commit 5bc871c0 by Ren Ping

feat:排班结果页面,缺少一个技能类型“调试讲解使用”,并根据这个字段返回统计值

1 parent 9c9cd33e
......@@ -551,6 +551,9 @@ public class ScheduleServiceImpl implements ScheduleService {
HashMap<String, List<String>> p4 = this.packParams("skillCategory", "整改");
items.add(new ScheduleSummaryResp.ValueDTO("整改", map.getOrDefault("整改", 0), null, urlName, p4));
HashMap<String, List<String>> p5 = this.packParams("skillCategory", "调试讲解使用");
items.add(new ScheduleSummaryResp.ValueDTO("调试讲解使用", map.getOrDefault("调试讲解使用", 0), null, urlName, p5));
return items;
}
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!