自动化立体仓库 - WMS系统
skyouc
5 天以前 34aa40fffdda9155e77a7991ca8c7691102bb0b8
src/main/java/com/zy/asrs/controller/TaskLogController.java
@@ -43,7 +43,9 @@
        convert(param, wrapper);
        allLike(TaskLog.class, param.keySet(), wrapper, condition);
        if (!Cools.isEmpty(orderByField)){wrapper.orderBy(humpToLine(orderByField), "asc".equals(orderByType));}
        return R.ok(taskLogService.selectPage(new Page<>(curr, limit), wrapper));
        wrapper.orderBy("appe_time desc");
//        Page<TaskLog> taskLogPage = taskLogService.selectPage(new Page<>(curr, limit), wrapper);
        return R.ok().add(taskLogService.selectPage(new Page<>(curr, limit), wrapper));
    }
    private <T> void convert(Map<String, Object> map, EntityWrapper<T> wrapper){