jiangtengfei

edit

@@ -141,4 +141,41 @@ response: @@ -141,4 +141,41 @@ response:
141 "returnCode": 200, 141 "returnCode": 200,
142 "returnMsg": "success" 142 "returnMsg": "success"
143 } 143 }
  144 +```
  145 +
  146 +## 一对一、小班课加积分接口
  147 +
  148 +>1.此接口需要access_token
  149 +>
  150 +>2.class_type:
  151 +>
  152 +>正常课,NORMAL
  153 +>
  154 +>小班课,SMALL
  155 +>
  156 +>
  157 +
  158 +
  159 +接口地址: /teaching/student/score
  160 +
  161 +Request method:POST
  162 +
  163 +Request Params:
  164 +
  165 +|参数名 |是否必须 |说明 |参数类型 |
  166 +|--------------|-----------|-------------------------------|-----------------|
  167 +|work_order_id |是 |鱼卡id |Long |
  168 +|class_type |否 |不传默认值为`NORMAL `,课程类型见说明|String |
  169 +
  170 +
  171 +response:
  172 +
  173 +```
  174 +{
  175 + "data": {
  176 + "score": 300
  177 + },
  178 + "returnCode": 200,
  179 + "returnMsg": "success"
  180 +}
144 ``` 181 ```