| | |
| | | excludeTrash(param); |
| | | convert(param, wrapper); |
| | | |
| | | // HashSet<String> excludeItems = new HashSet<>(); |
| | | // excludeItems.add("id"); |
| | | // excludeItems.add("item_id"); |
| | | // excludeItems.add("weight_num"); |
| | | // excludeItems.add("create_time"); |
| | | // excludeItems.add("create_id"); |
| | | // excludeItems.add("modify_time"); |
| | | // excludeItems.add("modify_id"); |
| | | // |
| | | // allLike(ProjectPlan.class,excludeItems,wrapper, (String) param.get("id")); |
| | | wrapper.orderBy("item_id"); |
| | | return R.ok(projectPlanService.selectPage(new Page<>(curr, limit), wrapper)); |
| | | } |