将拿到的list<map>拿到Treemap里面存一下自动排序

		Map<String, Object> map = new HashMap<>();
		List<Verdice> verdice = verdiceService.selectVerdicePRB(eci, starttime, endtime);
		List<Map<String, String>> list = new ArrayList<Map<String, String>>();
		Map<String, String> map1 = new TreeMap<String, String>();
		for (Verdice cc : verdice) {
			map1.put(cc.getDaytime(), "1");
			// list.add(map1);
		}

  

posted on 2019-09-04 16:38  tanada  阅读(752)  评论(0编辑  收藏  举报