jiaozijun

Update 暴露给客户端的接口.md

@@ -635,3 +635,38 @@ Response: @@ -635,3 +635,38 @@ Response:
635 returnMsg: "success" 635 returnMsg: "success"
636 } 636 }
637 ``` 637 ```
  638 +
  639 +
  640 +
  641 +# 14.学生剩余外教课数量(1对1)
  642 +>
  643 +
  644 +接口地址:fishcard/service/student/{studentId}/foreign/class/infuture
  645 +
  646 +请求方式:GET
  647 +
  648 +Request params:
  649 +
  650 +|参数名 |是否必须 |说明 |参数类型 |
  651 +|--------------|----------|--------|----------|
  652 +|studentId |是 | |long |
  653 +
  654 +
  655 +推送 json:
  656 +
  657 +```
  658 +http://123.56.13.168:8080/fishcard/service/student/1296454/foreign/class/infuture?access_token=T0zBIKNx2K
  659 +
  660 +```
  661 +
  662 +Response:
  663 +```
  664 +{
  665 + data:
  666 + {
  667 + foreignClassInfutre: 22 外教课 1 to 1 数量
  668 + },
  669 + returnCode: 200,
  670 + returnMsg: "success"
  671 +}
  672 +```