Commit 65afc0d96ab8dd2ffefc23fb6109633b1d3a4089
1 parent
9538d717
直属公司指标统计接口内添加浦交公司合计
Showing
1 changed file
with
19 additions
and
0 deletions
src/main/java/com/bsth/server_rs/bigdata/BigscreenService.java
| ... | ... | @@ -1063,6 +1063,7 @@ public class BigscreenService { |
| 1063 | 1063 | sortMap.put("上南", 1); |
| 1064 | 1064 | sortMap.put("金高", 2); |
| 1065 | 1065 | sortMap.put("南汇", 3); |
| 1066 | + sortMap.put("浦交", 4); | |
| 1066 | 1067 | Map<String, Object> ygMap = new HashMap<String, Object>(); |
| 1067 | 1068 | ygMap.put("gs", "杨高"); |
| 1068 | 1069 | resList.add(ygMap); |
| ... | ... | @@ -1075,6 +1076,9 @@ public class BigscreenService { |
| 1075 | 1076 | Map<String, Object> nhMap = new HashMap<String, Object>(); |
| 1076 | 1077 | nhMap.put("gs", "南汇"); |
| 1077 | 1078 | resList.add(nhMap); |
| 1079 | + Map<String, Object> pjMap = new HashMap<String, Object>(); | |
| 1080 | + pjMap.put("gs", "浦交"); | |
| 1081 | + resList.add(pjMap); | |
| 1078 | 1082 | |
| 1079 | 1083 | |
| 1080 | 1084 | for(Map<String, Object> t : list){ |
| ... | ... | @@ -1096,6 +1100,21 @@ public class BigscreenService { |
| 1096 | 1100 | mapPut(m, "jhzgl", t.get("jhzgl").toString()); |
| 1097 | 1101 | mapPut(m, "sjzgl", t.get("sjzgl").toString()); |
| 1098 | 1102 | } |
| 1103 | + | |
| 1104 | + mapPut(pjMap, "jhcc", t.get("jhccz").toString()); | |
| 1105 | + mapPut(pjMap, "sjcc", t.get("sjcc").toString()); | |
| 1106 | + mapPut(pjMap, "jhbc", t.get("jhbc").toString()); | |
| 1107 | + mapPut(pjMap, "sjbc", t.get("sjbc").toString()); | |
| 1108 | + mapPut(pjMap, "jhsmbc", t.get("jhsmbcs").toString()); | |
| 1109 | + mapPut(pjMap, "sjsmbc", t.get("sjsmbczds").toString()); | |
| 1110 | + mapPut(pjMap, "jhqqbc", t.get("jhszfcs").toString()); | |
| 1111 | + mapPut(pjMap, "sjqqzd", t.get("sjszfczds").toString()); | |
| 1112 | + if(gpSet.contains(t.get("lineCode").toString())){ | |
| 1113 | + mapPut(pjMap, "jhgpqqbc", t.get("jhszfcs").toString()); | |
| 1114 | + mapPut(pjMap, "sjgpqqzd", t.get("sjszfczds").toString()); | |
| 1115 | + } | |
| 1116 | + mapPut(pjMap, "jhzgl", t.get("jhzgl").toString()); | |
| 1117 | + mapPut(pjMap, "sjzgl", t.get("sjzgl").toString()); | |
| 1099 | 1118 | } |
| 1100 | 1119 | } |
| 1101 | 1120 | ... | ... |