| | |
| | | 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.PathVariable; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.ResponseBody; |
| | | |
| | | import java.util.List; |
| | |
| | | */ |
| | | @PostMapping("/student/getHasStudentUser") |
| | | public List<Integer> getHasStudentUser(); |
| | | |
| | | /** |
| | | * 查询惠民卡绑定学员列表信息 |
| | | * |
| | | * @return |
| | | */ |
| | | @RequestMapping("/base/student/getStudentByIds/{ids}") |
| | | public List<TStudent> getStudentByIds(@PathVariable("ids") String ids); |
| | | } |