Commit 7de5d9a6 authored by 廖旭伟's avatar 廖旭伟

bug修改

parent c47e4d45
...@@ -61,7 +61,7 @@ public class OperLogController extends BaseCRUDJsonBodyMappingController<OperLog ...@@ -61,7 +61,7 @@ public class OperLogController extends BaseCRUDJsonBodyMappingController<OperLog
protected void doListBefore(OperLogEntity query, Map<String, Object> model, Context context) throws AppException { protected void doListBefore(OperLogEntity query, Map<String, Object> model, Context context) throws AppException {
query.setOrderColList(new ArrayList<OrderCol>() { query.setOrderColList(new ArrayList<OrderCol>() {
{ {
add(new OrderCol("a.logDate", "desc")); add(new OrderCol("logDate", "desc"));
} }
}); });
} }
......
...@@ -59,7 +59,7 @@ public class PrintLogServiceImpl extends AbstractCRUDServiceImpl<PrintLogDao, Pr ...@@ -59,7 +59,7 @@ public class PrintLogServiceImpl extends AbstractCRUDServiceImpl<PrintLogDao, Pr
} }
query.setOrderColList(new ArrayList<OrderCol>() { query.setOrderColList(new ArrayList<OrderCol>() {
{ {
add(new OrderCol("a.createTime", OrderCol.DESCENDING)); add(new OrderCol("createTime", OrderCol.DESCENDING));
} }
}); });
return query; return query;
......
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