package com.dsh.activity.feignclient.account; import com.dsh.activity.entity.TStudent; import org.springframework.cloud.openfeign.FeignClient; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RequestMapping; import java.util.List; /** * @author zhibing.pu * @date 2023/6/24 15:02 */ @FeignClient("mb-cloud-account") public interface StudentClient { /** * 获取用户学员列表 * * @param appUserId * @return */ @PostMapping("/student/queryStudentList") List queryStudentList(Integer appUserId); /** * 获取有学员的用户ids * * @return */ @PostMapping("/student/getHasStudentUser") public List getHasStudentUser(); /** * 查询惠民卡绑定学员列表信息 * * @return */ @RequestMapping("/base/student/getStudentByIds/{ids}") public List getStudentByIds(@PathVariable("ids") String ids); }