自动化立体仓库 - WMS系统
#
luxiaotao1123
2021-08-24 461b3bf8e289e1c076d805d47f5f1a9b5c195ce8
src/main/java/com/zy/ints/controller/WaitMatinController.java
@@ -51,11 +51,6 @@
    // -------------------------------------------------------------------------------------------------
    @RequestMapping(value = "/waitMatin/{id}/auth")
@@ -70,10 +65,12 @@
                  @RequestParam(defaultValue = "10")Integer limit,
                  @RequestParam(required = false)String orderByField,
                  @RequestParam(required = false)String orderByType,
                  @RequestParam(required = false)String condition,
                  @RequestParam Map<String, Object> param){
        EntityWrapper<WaitMatin> wrapper = new EntityWrapper<>();
        excludeTrash(param);
        convert(param, wrapper);
        allLike(WaitMatin.class, param.keySet(), wrapper, condition);
        if (!Cools.isEmpty(orderByField)){wrapper.orderBy(humpToLine(orderByField), "asc".equals(orderByType));}
        return R.ok(waitMatinService.selectPage(new Page<>(curr, limit), wrapper));
    }