| | |
| | | @GetMapping("/getNeedClaimList") |
| | | public R getNeedClaimList(@RequestParam("pageNum") int pageNum, |
| | | @RequestParam("pageSize") int pageSize, |
| | | @RequestParam(value = "kind", required = false) String kind, |
| | | @RequestParam(value = "taskId", required = false) String taskId, |
| | | @RequestParam(value = "userId", required = false) String userId, |
| | | @RequestParam(value = "unitId", required = false) String unitId) |
| | | { |
| | | return R.ok(claimService.getList(pageNum,pageSize,kind,userId,unitId)); |
| | | return R.ok(claimService.getList(pageNum,pageSize,taskId,userId,unitId)); |
| | | } |
| | | |
| | | @GetMapping("/getNeedClaimDetails") |