Commit 2c5221d2 authored by 赵啸非's avatar 赵啸非

异常日志前端展示添加

parent 3c35e37e
...@@ -50,6 +50,7 @@ public class AccessLogController extends BaseCRUDJsonBodyMappingController<Acces ...@@ -50,6 +50,7 @@ public class AccessLogController extends BaseCRUDJsonBodyMappingController<Acces
protected void doListBefore(AccessLogEntity query, Map<String, Object> model, Context context) throws AppException { protected void doListBefore(AccessLogEntity query, Map<String, Object> model, Context context) throws AppException {
List<OrderCol> orderColList = new ArrayList<>(); List<OrderCol> orderColList = new ArrayList<>();
orderColList.add(new OrderCol("createTime", OrderCol.DESCENDING)); orderColList.add(new OrderCol("createTime", OrderCol.DESCENDING));
orderColList.add(new OrderCol("spanId", OrderCol.ASCENDING));
query.setOrderColList(orderColList); query.setOrderColList(orderColList);
super.doListBefore(query, model, context); super.doListBefore(query, model, context);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment