无关风月
4 天以前 4742874ad840d7e1e3ac79dc288b38e9a642319d
cloud-server-activity/src/main/java/com/dsh/activity/feignclient/account/StudentClient.java
@@ -1,10 +1,10 @@
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.PathVariable;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.bind.annotation.RequestMapping;
import java.util.List;
@@ -25,6 +25,9 @@
    @PostMapping("/student/queryStudentList")
    List<TStudent> queryStudentList(Integer appUserId);
    @PostMapping("/student/getStudentById")
    TStudent getStudentById(Integer studentId);
    /**
     * 获取有学员的用户ids
     *
@@ -32,4 +35,12 @@
     */
    @PostMapping("/student/getHasStudentUser")
    public List<Integer> getHasStudentUser();
    /**
     * 查询玩湃惠民卡绑定学员列表信息
     *
     * @return
     */
    @RequestMapping("/base/student/getStudentByIds/{ids}")
    public List<TStudent> getStudentByIds(@PathVariable("ids") String ids);
}