|
@@ -137,6 +137,12 @@ public class AppointmentService {
|
|
|
map.put("introduction", info.getName());
|
|
|
}
|
|
|
}
|
|
|
+ data.getData().sort((o1, o2) -> {
|
|
|
+ Integer i1 = Integer.parseInt(o1.get("empTitCode").toString());
|
|
|
+ Integer i2 = Integer.parseInt(o2.get("empTitCode").toString());
|
|
|
+ int diff = i1 - i2;
|
|
|
+ return Integer.compare(diff, 0);
|
|
|
+ });
|
|
|
return ResultVoUtil.success(data.getData());
|
|
|
}
|
|
|
|