nickchange
2023-11-20 79d2b56c4be7c020e49361498021f0fd1527ea41
cloud-server-activity/src/main/java/com/dsh/activity/feignclient/account/StudentClient.java
@@ -4,6 +4,7 @@
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;
@@ -22,4 +23,10 @@
     */
    @PostMapping("/student/queryStudentList")
    List<TStudent> queryStudentList(Integer appUserId);
    /**
     * 获取有学员的用户ids
     * @return
     */
    @PostMapping("/student/getHasStudentUser")
    public List<Integer> getHasStudentUser();
}