| | |
| | | import io.swagger.annotations.ApiOperation; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | |
| | | import static java.util.Objects.isNull; |
| | | |
| | | /** |
| | | * @auther lyq |
| | | * @create 2021-04-14 15:02:49 |
| | |
| | | @ApiOperation(value = "查询社区邻里圈话题列表", response = ComActNeighborCircleTopicAppVO.class) |
| | | @GetMapping("topic/list") |
| | | public R getNeighborTopicByApp( |
| | | @RequestParam(value = "name",defaultValue = "",required = false) String name) { |
| | | return communityService.getNeighborTopicByApp(name); |
| | | @RequestParam(value = "name",defaultValue = "",required = false) String name, |
| | | @RequestParam(value = "belongType", defaultValue = "1", required = false) Integer belongType) { |
| | | return communityService.getNeighborTopicByApp(name, belongType); |
| | | } |
| | | |
| | | @ApiOperation(value = "用户删除邻里圈") |
| | |
| | | @ApiOperation(value = "新版接单问题",response =ComActNeighborCircleAppVO.class ) |
| | | @PostMapping("selectSolve") |
| | | public R selectSolve(@RequestBody ComActNeighborCircleAppDTO neighborCircleAppDTO) { |
| | | neighborCircleAppDTO.setUserId(this.getUserId()); |
| | | return communityService.selectSolve(neighborCircleAppDTO); |
| | | } |
| | | |
| | |
| | | return this.communityService.serviceStatic(serviceStaticDTO); |
| | | } |
| | | |
| | | |
| | | } |
| | | |