Showing
1 changed file
with
47 additions
and
0 deletions
@@ -189,3 +189,50 @@ public class MemberSummary implements BeanToJson { | @@ -189,3 +189,50 @@ public class MemberSummary implements BeanToJson { | ||
189 | > status = 'SUCCESS',学生有权限;status = 'ERROR',没有权限<br> | 189 | > status = 'SUCCESS',学生有权限;status = 'ERROR',没有权限<br> |
190 | > type = 'type',没有购买该课程<br> | 190 | > type = 'type',没有购买该课程<br> |
191 | 191 | ||
192 | + | ||
193 | +##### 9. 【APP接口】查询APP领取福利接口,显示高亮信息 | ||
194 | + | ||
195 | +- URL: {{localhost}}/boxfish-online-card/member/register/getMemberWelfare?access_token={{token}} | ||
196 | +- Method: POST | ||
197 | +- RequestBody | ||
198 | + | ||
199 | +- ResponseBody | ||
200 | + | ||
201 | +```java | ||
202 | +public static class Response { | ||
203 | + private Boolean flagShowShade; | ||
204 | + | ||
205 | + private Boolean flagHasClickAdvanced; | ||
206 | + private Boolean flagHasClickBasicTextbookV1Word; | ||
207 | + private Boolean flagHasClickBasicTextbookV2Word; | ||
208 | +} | ||
209 | +``` | ||
210 | + | ||
211 | + | ||
212 | +##### 10. 【APP接口】高亮消失上报接口 | ||
213 | + | ||
214 | +- URL: {{localhost}}/boxfish-online-card/member/register/clickShade?access_token={{token}} | ||
215 | +- Method: POST | ||
216 | +- RequestBody | ||
217 | +- ResponseBody | ||
218 | + | ||
219 | + | ||
220 | +##### 11. 【APP接口】点击 "体验课程X" 标签消失接口 | ||
221 | + | ||
222 | +- URL: {{localhost}}/boxfish-online-card/member/register/clickShade?access_token={{token}} | ||
223 | +- Method: POST | ||
224 | +- RequestBody | ||
225 | + | ||
226 | +```json | ||
227 | +{ | ||
228 | + "type": "BASIC_TEXTBOOK_V1_WORD" | ||
229 | +} | ||
230 | +``` | ||
231 | + | ||
232 | +> "type"为枚举值:<br> | ||
233 | +`BASIC_TEXTBOOK_V1_WORD`<br> | ||
234 | +`BASIC_TEXTBOOK_V2_WORD`<br> | ||
235 | +`ADVANCED_PAPER_V1_DEMO_V2`<br> | ||
236 | +`INTERNATIONAL_25_MIN_COURSE`<br> | ||
237 | + | ||
238 | +- ResponseBody |
-
Please register or login to post a comment