无关风月
2025-04-11 1d9f7b0cf4251f3058badb07dd7a2bc06b6bc09a
cloud-server-management/src/main/java/com/dsh/course/feignClient/communityWorldCup/WorldCupClient.java
@@ -1,10 +1,13 @@
package com.dsh.course.feignClient.communityWorldCup;
import com.dsh.course.feignClient.communityWorldCup.Model.*;
import com.dsh.guns.modular.system.model.WorldCupQuery;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.ResponseBody;
import java.util.List;
import java.util.Map;
/**
@@ -13,8 +16,24 @@
 */
@FeignClient("mb-cloud-communityWorldCup")
public interface WorldCupClient {
    @PostMapping("/worldCup/getWorldCupIncome")
    List<WorldCupIncomeVO> getWorldCupIncome( WorldCupQuery query);
    /**
     * 门店角色:查询属于门店的学员
     * @param storeIds
     * @return
     */
    @PostMapping("/worldCup/getStudentIds")
    List<Integer> getStudentIds(StoreIds storeIds);
    /**
     * 门店角色:查询属于门店的会员
     * @param storeIds
     * @return
     */
    @PostMapping("/worldCup/getUserIds")
    List<Integer> getUserIds(StoreIds storeIds);
    /**
     * 获取比赛管理列表页数据
     * @param worldCupListAll
     * @return