huayandong

update doc api

@@ -11,63 +11,44 @@ @@ -11,63 +11,44 @@
11 - ResponseBody: 11 - ResponseBody:
12 ```java 12 ```java
13 public class MemberSummary implements BeanToJson { 13 public class MemberSummary implements BeanToJson {
  14 + private Long userId;
  15 + private MemberTypeEnum memberType; // 学员身份
  16 + private DateTime expireTimeMember; // 学员过期时间
14 17
15 - private Long userId; 18 + private MemberTypeEnum memberTypeV2; // 新版本用户身份
16 - private MemberTypeEnum memberType; // 学员身份 19 +
17 - private DateTime expireTimeMember; // 学员过期时间 20 + private Integer amountClassSvValid; // 外教练习 剩余次数
18 - 21 + private Integer amountClassSvFinished; // 外教练习 完成次数
19 - private Integer amountClassSvValid; // 外教练习 剩余次数 22 + private DateTime expireTimeClassSv; // 外教练习 过期时间
20 - private Integer amountClassSvFinished; // 外教练习 完成次数 23 +
21 - private DateTime expireTimeClassSv; // 外教练习 过期时间 24 + private Integer amountClassSv10Valid; // 外教练习 10分钟 剩余次数
22 - 25 +
23 - private Integer amountClassSv10Valid; // 外教练习 10分钟 剩余次数 26 + private String expireDescClassSv5; // 外教练习5分钟 过期描述
24 - 27 + private String expireDescClassSv10; // 外教练习10分钟 过期描述
25 - private String expireDescClassSv5; // 外教练习5分钟 过期描述 28 +
26 - private String expireDescClassSv10; // 外教练习10分钟 过期描述 29 + private Integer amountExamOral; // 口语考试 剩余次数
27 - 30 + private DateTime expireTimeExamOral; // 口语考试 过期时间
28 - private Integer amountExamOral; // 口语考试 剩余次数 31 +
29 - private DateTime expireTimeExamOral; // 口语考试 过期时间 32 + private Integer amountOpenCn; // 中教名师课 剩余次数
30 - 33 + private DateTime expireTimeOpenCn; // 中教名师课 过期时间
31 - private Integer amountOpenCn; // 中教名师课 剩余次数 34 + private String expireDescOpenCn; // 中教名师课 过期描述
32 - private DateTime expireTimeOpenCn; // 中教名师课 过期时间 35 +
33 - private String expireDescOpenCn; // 中教名师课 过期描述 36 + private Integer amountOpenUs; // 外教名师课 剩余次数
34 - 37 + private DateTime expireTimeOpenUs; // 外教名师课 过期时间
35 - private Integer amountOpenUs; // 外教名师课 剩余次数 38 + private String expireDescOpenUs; // 外教名师课 过期描述
36 - private DateTime expireTimeOpenUs; // 外教名师课 过期时间 39 +
37 - private String expireDescOpenUs; // 外教名师课 过期描述 40 + private Boolean flagPaperV1Auth; // 纸质三件套 权限
38 - 41 + private DateTime expireTimePaperV1; // 智能三件套 过期时间
39 - private Boolean flagPaperV1Auth; // 纸质三件套 权限 42 +
40 - private DateTime expireTimePaperV1; // 智能三件套 过期时间 43 + private Long classSmallId; // 小班课ID
41 - 44 + private String classSmallName; // 小班课名称
42 - private Long classSmallId; // 小班课ID 45 + private Integer amountClassSmall; // 小班课数量
43 - private String classSmallName; // 小班课名称 46 +
44 - private Integer amountClassSmall; // 小班课数量 47 + private Integer amountCash; // 剩余奖学金
45 - 48 +
46 - private Integer amountCash; // 剩余奖学金 49 + // 四会课 单词
47 - 50 + private Boolean flagPaperTextbookAuth; // 纸质四会课 权限
48 - // BASIC套餐 知识点 51 + private DateTime expireTimePaperTextbook; // 纸质四会课 过期时间
49 - private Boolean flagUserHasBasic_KNOWLEDGE; // 是否购买 BASIC 套餐  
50 - private DateTime expireTimeBasic_KNOWLEDGE; // BASIC 套餐过期时间  
51 - // BASIC套餐 单词  
52 - private Boolean flagUserHasBasic_WORD; // 是否购买 BASIC 套餐  
53 - private DateTime expireTimeBasic_WORD; // BASIC 套餐过期时间  
54 -  
55 - // 四会课 单词  
56 - private Boolean flagPaperTextbookAuth; // 纸质四会课 权限  
57 - private DateTime expireTimePaperTextbook; // 纸质四会课 过期时间  
58 -  
59 - // 四会课 弹窗标识  
60 - private Boolean flagShowTextbookV2Dialog; // 四会课弹窗 显示标识  
61 - private String textbookV2ImageUrl; // 四会课弹窗 图片  
62 - private String textbookV2PageUrl; // 四会课显示 网页  
63 - // 四会课 banner  
64 - private Boolean flagShowTextbookV2Purchase; // 四会课购买 显示标识  
65 - private String textbookV2PurchaseUrl; // 四会课购买 网页  
66 - private String textbookV2PurchaseImage; // 四会课购买 图片  
67 - // 精华小学期 banner  
68 - private Boolean flagShowClassSmall_JH; // 精华小学期 显示标识  
69 - private String classSmall_JHPurchaseUrl; // 精华小学期 网页  
70 - private String classSmall_JHPurchaseImage; // 精华小学期 图片  
71 } 52 }
72 ``` 53 ```
73 54