| | |
| | | package com.dsh.activity.feignclient.account; |
| | | |
| | | import com.dsh.activity.entity.TStudent; |
| | | import com.dsh.activity.feignclient.account.model.Student; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.ResponseBody; |
| | | |
| | | import java.util.List; |
| | | |
| | |
| | | |
| | | /** |
| | | * 获取用户学员列表 |
| | | * |
| | | * @param appUserId |
| | | * @return |
| | | */ |
| | | @PostMapping("/student/queryStudentList") |
| | | List<Student> queryStudentList(Integer appUserId); |
| | | List<TStudent> queryStudentList(Integer appUserId); |
| | | |
| | | /** |
| | | * 获取有学员的用户ids |
| | | * |
| | | * @return |
| | | */ |
| | | @PostMapping("/student/getHasStudentUser") |
| | | public List<Integer> getHasStudentUser(); |
| | | } |