| | |
| | | import com.panzhihua.common.model.dtos.advertisement.ComOpsAdvDTO; |
| | | import com.panzhihua.common.model.dtos.advertisement.PageComOpsAdvDTO; |
| | | import com.panzhihua.common.model.dtos.community.*; |
| | | import com.panzhihua.common.model.dtos.neighbor.ComActNeighborCircleAdminDTO; |
| | | import com.panzhihua.common.model.dtos.neighbor.AddComActNeighborCircleAppDTO; |
| | | import com.panzhihua.common.model.dtos.neighbor.ComActNeighborCircleAppDTO; |
| | | import com.panzhihua.common.model.dtos.neighbor.ComActNeighborCircleDetailAppDTO; |
| | | import com.panzhihua.common.model.dtos.shop.PageComShopOrderSearchDTO; |
| | | import com.panzhihua.common.model.dtos.shop.*; |
| | | import com.panzhihua.common.model.dtos.shop.PageComShopGoodsDTO; |
| | |
| | | * @param neighborCircleAppDTO 请求参数 |
| | | * @return 邻里圈列表 |
| | | */ |
| | | @PostMapping("/neighbor/pageNeighbor") |
| | | R pageNeighbor(@RequestBody ComActNeighborCircleAppDTO neighborCircleAppDTO); |
| | | @PostMapping("/neighbor/pageNeighborByApp") |
| | | R pageNeighborByApp(@RequestBody ComActNeighborCircleAppDTO neighborCircleAppDTO); |
| | | |
| | | /** |
| | | * 用户发布邻里圈审核 |
| | | * @param addNeighborCircleAppDTO 邻里圈请求参数 |
| | | * @return 发布结果 |
| | | */ |
| | | @PostMapping("/neighbor/addNeighborByApp") |
| | | R addNeighborByApp(@RequestBody AddComActNeighborCircleAppDTO addNeighborCircleAppDTO); |
| | | |
| | | /** |
| | | * 用户查看邻里圈详情 |
| | | * @param neighborCircleAppDTO 请求参数 |
| | | * @return 邻里圈详情 |
| | | */ |
| | | @PostMapping("/neighbor/neighborDetailByApp") |
| | | R neighborDetailByApp(@RequestBody ComActNeighborCircleDetailAppDTO neighborCircleAppDTO); |
| | | |
| | | /** |
| | | * 管理后台查询邻里圈列表 |
| | | * @param comActNeighborCircleAdminDTO 请求参数 |
| | | * @return 邻里圈列表 |
| | | */ |
| | | @PostMapping("/neighbor/pageNeighborByAdmin") |
| | | R pageNeighborByAdmin(@RequestBody ComActNeighborCircleAdminDTO comActNeighborCircleAdminDTO); |
| | | |
| | | |
| | | /** |
| | | * 后台修改邻里圈 |
| | | * @param comActNeighborCircleAdminDTO 请求参数 |
| | | */ |
| | | @PostMapping("/neighbor/changeStatusByAdmin") |
| | | R changeStatusByAdmin(@RequestBody ComActNeighborCircleAdminDTO comActNeighborCircleAdminDTO); |
| | | |
| | | |
| | | /** |
| | | * 后台修改邻里圈 |
| | | * @param id 邻里圈id |
| | | * @return 邻里圈列表 |
| | | */ |
| | | @PostMapping("/neighbor/deleteByAdmin") |
| | | R deleteByAdmin(@RequestParam("id")Long id); |
| | | |
| | | |
| | | } |