无关风月
2025-03-30 bf6dec40a0fffeb65d698640a2ca1afdb7576754
cloud-server-activity/src/main/java/com/dsh/activity/feignclient/account/StudentClient.java
@@ -3,7 +3,9 @@
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;
@@ -32,4 +34,12 @@
     */
    @PostMapping("/student/getHasStudentUser")
    public List<Integer> getHasStudentUser();
    /**
     * 查询惠民卡绑定学员列表信息
     *
     * @return
     */
    @RequestMapping("/base/student/getStudentByIds/{ids}")
    public List<TStudent> getStudentByIds(@PathVariable("ids") String ids);
}