puzhibing
2024-03-12 a1b33924831ae00398ae3cd75e4801b8b57cb89d
cloud-server-management/src/main/java/com/dsh/course/feignClient/communityWorldCup/WorldCupStoreClient.java
@@ -39,4 +39,18 @@
    @PostMapping("/worldCup/getWorldCupStoreAllList")
    List<WorldCupStore> getWorldCupStoreAllList(Integer worldCupId);
    /**
     * 根据门店id获取门店关系数据
     * @param storeId
     * @return
     */
    @PostMapping("/worldCup/getWorldCupStoreListByStoreId")
    List<WorldCupStore> getWorldCupStoreListByStoreId(Integer storeId);
    /**
     * 根据门店id修改门店关系数据
     * @param worldCupStores
     * @return
     */
    @PostMapping("/worldCup/updateWorldCupStoreListById")
    Boolean updateWorldCupStoreListById(List<WorldCupStore> worldCupStores);
}