| | |
| | | package com.dsh.course.feignClient.communityWorldCup; |
| | | |
| | | import com.dsh.course.feignClient.communityWorldCup.Model.WorldCupStore; |
| | | import com.dsh.course.feignClient.communityWorldCup.Model.WorldCupStoreVO; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | |
| | | * 删除世界杯门店关系数据 |
| | | * @param worldCupId |
| | | */ |
| | | @PostMapping("/worldCup/addWorldCupStore") |
| | | @PostMapping("/worldCup/delWorldCupStore") |
| | | void delWorldCupStore(@RequestBody Integer worldCupId); |
| | | |
| | | |
| | |
| | | * @return |
| | | */ |
| | | @PostMapping("/worldCup/getWorldCupStoreListByStoreId") |
| | | List<WorldCupStore> getWorldCupStoreListByStoreId(Integer storeId); |
| | | List<WorldCupStoreVO> getWorldCupStoreListByStoreId(Integer storeId); |
| | | /** |
| | | * 根据门店id修改门店关系数据 |
| | | * @param worldCupStores |