|
@ -108,6 +108,9 @@ public class DoctorMessageService {
|
|
Integer sqlCount =Integer.parseInt(sqlResult.get("count").toString()) ;
|
|
Integer sqlCount =Integer.parseInt(sqlResult.get("count").toString()) ;
|
|
count +=sqlCount;
|
|
count +=sqlCount;
|
|
}
|
|
}
|
|
|
|
if(sqlResult.get("create_time")==null){
|
|
|
|
continue;
|
|
|
|
}
|
|
listTmp.add(sqlResult);
|
|
listTmp.add(sqlResult);
|
|
}
|
|
}
|
|
listTmp.sort(Comparator.comparing(obj -> obj.get("create_time").toString()));
|
|
listTmp.sort(Comparator.comparing(obj -> obj.get("create_time").toString()));
|