| | |
| | | @RequestParam(value = "userId", required = false)String userId, |
| | | @RequestParam(value = "communityId", required = false)String communityId); |
| | | |
| | | @GetMapping("/NeedProblem/getMyJoinNeedProblemList") |
| | | public R getMyJoinNeedProblemList(@RequestParam("pageNum") int pageNum, |
| | | @RequestParam("pageSize") int pageSize, |
| | | @RequestParam(value = "kind", required = false)String kind, |
| | | @RequestParam(value = "userId", required = false)String userId); |
| | | |
| | | |
| | | @GetMapping("/NeedProblem/getDetails") |
| | | public R getNeedProblemDetails(@RequestParam("id") String id); |
| | | |
| | |
| | | ****************************************************************************************************************/ |
| | | @GetMapping("/NewFightCommunity/getNeedClaimList") |
| | | public R getNewFightCommunityList(@RequestParam("pageNum") int pageNum, |
| | | @RequestParam("pageSize") int pageSize); |
| | | @RequestParam("pageSize") int pageSize, |
| | | @RequestParam(value = "communityId", required = false) String communityId, |
| | | @RequestParam(value = "userId", required = false) String userId); |
| | | |
| | | @GetMapping("/NewFightCommunity/getNeedClaimDetails") |
| | | public R getNewFightCommunityDetails(@RequestParam("id") String id); |
| | |
| | | public R expurgateProjectPlanData(@RequestParam("id") String id); |
| | | |
| | | |
| | | /******************************************************************************************************** |
| | | * |
| | | * 项目参与 |
| | | * |
| | | ******************************************************************************************************/ |
| | | |
| | | |
| | | @GetMapping("/NewFightCommunity/getJoinList") |
| | | public R getJoinList(@RequestParam("pageNum") int pageNum, |
| | | @RequestParam("pageSize") int pageSize, |
| | | @RequestParam("projectId") String projectId); |
| | | |
| | | @GetMapping("/NewFightCommunity/getJoinDetails") |
| | | public R getJoinDetails(@RequestParam("id") String id); |
| | | |
| | | @PostMapping("/NewFightCommunity/addJoinData") |
| | | public R addJoinData(@RequestBody NewFightProjectJoinDTO item); |
| | | |
| | | @PostMapping("/NewFightCommunity/editJoinData") |
| | | public R editJoinData(@RequestBody NewFightProjectJoinDTO item); |
| | | |
| | | @DeleteMapping("/NewFightCommunity/expurgateJoinData") |
| | | public R expurgateJoinData(@RequestParam("id") String id); |
| | | |
| | | |
| | | |
| | | /******************************************************************************************************** |
| | | * |
| | | * 项目评论 |
| | | * |
| | | ******************************************************************************************************/ |
| | | |
| | | @GetMapping("/NewFightCommunity/getEvaluateList") |
| | | public R getEvaluateList(@RequestParam("pageNum") int pageNum, |
| | | @RequestParam("pageSize") int pageSize, |
| | | @RequestParam("projectId") String projectId); |
| | | |
| | | @GetMapping("/NewFightCommunity/getEvaluateDetails") |
| | | public R getEvaluateDetails(@RequestParam("id") String id); |
| | | |
| | | |
| | | @PostMapping("/NewFightCommunity/addEvaluateData") |
| | | public R addEvaluateData(@RequestBody NewFightProjectEvaluateDTO item); |
| | | |
| | | @PostMapping("/NewFightCommunity/editEvaluateData") |
| | | public R editEvaluateData(@RequestBody NewFightProjectEvaluateDTO item); |
| | | |
| | | @DeleteMapping("/NewFightCommunity/expurgateEvaluateData") |
| | | public R expurgateEvaluateData(@RequestParam("id") String id); |
| | | |
| | | |
| | | |
| | | } |