| | |
| | | import com.panzhihua.common.model.vos.R; |
| | | import com.panzhihua.common.model.vos.SystemmanagementConfigVO; |
| | | import com.panzhihua.common.model.vos.community.*; |
| | | import com.panzhihua.common.model.vos.partybuilding.PartyBuildingMemberExcelVO; |
| | | import com.panzhihua.common.model.vos.user.UserPhoneVO; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @program: springcloud_k8s_panzhihuazhihuishequ |
| | |
| | | R detailMessage(@RequestParam("id")Long id); |
| | | |
| | | /** |
| | | * 小程序通过便民服务区域分页查询便民服务商家 |
| | | * @param comCvtBusinessAppletsDTO 查询参数 |
| | | * @return 返回结果 |
| | | */ |
| | | @PostMapping("/convenient/business/area/page") |
| | | R pageComCvtBusinessByServiceArea(@RequestBody PageComCvtBusinessAppletsDTO comCvtBusinessAppletsDTO); |
| | | |
| | | /** |
| | | * 社区后台分页查询便民服务商家 |
| | | * @param pageComCvtBusinessDTO 查询参数 |
| | | * @return 返回结果 |
| | |
| | | */ |
| | | @DeleteMapping("/convenient/serve/delete") |
| | | R deleteComCvtServe(@RequestParam("id") Long id); |
| | | |
| | | |
| | | /** |
| | | * 小程序便民服务商家详情 |
| | | * @param id 商家ID |
| | | * @return |
| | | */ |
| | | @GetMapping("/convenient/business/serve/get") |
| | | R getComCvtBusinessServeDetail(@RequestParam("id")Long id); |
| | | |
| | | /** |
| | | * 批量导入便民服务 |
| | | * @param list 便民服务集合 |
| | | */ |
| | | @PostMapping("/convenient/serve/import") |
| | | R listSaveConvenientServeExcelVO(@RequestBody List<ComCvtServeExcelVO> list,@RequestParam("communityId") Long communityId); |
| | | } |