| | |
| | | * @return 详情 |
| | | */ |
| | | @GetMapping("detailworkguide") |
| | | public R detailWorkGuide(@RequestParam("workGuideId") Long workGuideId, |
| | | @RequestParam("communityId") Long communityId) { |
| | | public R detailWorkGuide(@RequestParam("workGuideId") String workGuideId, |
| | | @RequestParam("communityId") String communityId) { |
| | | return workGuideService.detailWorkGuide(workGuideId, communityId); |
| | | } |
| | | |
| | |
| | | * @date 2021/8/31 15:03 |
| | | */ |
| | | @GetMapping("workGuide/classify/getList") |
| | | public R getWorkGuideClassifyList() { |
| | | return comActWorkGuideClassifyService.getWorkGuideClassifyList(); |
| | | public R getWorkGuideClassifyList(@RequestParam("areaCode")String areaCode) { |
| | | return comActWorkGuideClassifyService.getWorkGuideClassifyList(areaCode); |
| | | } |
| | | |
| | | /** |