puzhibing
2024-03-11 aa8afb8f18fee21361742b62061b4d4db4a09bb5
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);
}