Compare commits
No commits in common. "b95e75b8863ce81c54e5e6ce15814bab77255978" and "4a438a4ecb360eadcde9d1646401eff5f116a354" have entirely different histories.
b95e75b886
...
4a438a4ecb
|
@ -112,7 +112,7 @@ public class SysDeptController {
|
||||||
List<Map<String, Object>> list_metting = jdbcTemplate.queryForList("SELECT DISTINCT dept from t_meetingroom_book WHERE dept IS NOT NULL;");
|
List<Map<String, Object>> list_metting = jdbcTemplate.queryForList("SELECT DISTINCT dept from t_meetingroom_book WHERE dept IS NOT NULL;");
|
||||||
List<String> temp = list.stream().map(index -> index.get("name")).filter(index -> index != null).map(index -> index.toString()).collect(Collectors.toList());
|
List<String> temp = list.stream().map(index -> index.get("name")).filter(index -> index != null).map(index -> index.toString()).collect(Collectors.toList());
|
||||||
List<Map<String, Object>> list_ = list_metting.stream().map(index -> index.get("dept")).filter(index -> index != null).collect(Collectors.toList())
|
List<Map<String, Object>> list_ = list_metting.stream().map(index -> index.get("dept")).filter(index -> index != null).collect(Collectors.toList())
|
||||||
.stream().filter(index -> !temp.contains(index.toString())).map(index -> new HashMap<String, Object>() {{
|
.stream().filter(index -> !temp.contains(index.toString())).map(index -> new LinkedHashMap() {{
|
||||||
put("id", null);
|
put("id", null);
|
||||||
put("name", index.toString());
|
put("name", index.toString());
|
||||||
}}).collect(Collectors.toList());
|
}}).collect(Collectors.toList());
|
||||||
|
|
Loading…
Reference in New Issue