huayandong

update doc api

@@ -11,11 +11,12 @@ @@ -11,11 +11,12 @@
11 - ResponseBody: 11 - ResponseBody:
12 ```java 12 ```java
13 public class MemberSummary implements BeanToJson { 13 public class MemberSummary implements BeanToJson {
14 -  
15 private Long userId; 14 private Long userId;
16 private MemberTypeEnum memberType; // 学员身份 15 private MemberTypeEnum memberType; // 学员身份
17 private DateTime expireTimeMember; // 学员过期时间 16 private DateTime expireTimeMember; // 学员过期时间
18 17
  18 + private MemberTypeEnum memberTypeV2; // 新版本用户身份
  19 +
19 private Integer amountClassSvValid; // 外教练习 剩余次数 20 private Integer amountClassSvValid; // 外教练习 剩余次数
20 private Integer amountClassSvFinished; // 外教练习 完成次数 21 private Integer amountClassSvFinished; // 外教练习 完成次数
21 private DateTime expireTimeClassSv; // 外教练习 过期时间 22 private DateTime expireTimeClassSv; // 外教练习 过期时间
@@ -45,29 +46,9 @@ public class MemberSummary implements BeanToJson { @@ -45,29 +46,9 @@ public class MemberSummary implements BeanToJson {
45 46
46 private Integer amountCash; // 剩余奖学金 47 private Integer amountCash; // 剩余奖学金
47 48
48 - // BASIC套餐 知识点  
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 // 四会课 单词 49 // 四会课 单词
56 private Boolean flagPaperTextbookAuth; // 纸质四会课 权限 50 private Boolean flagPaperTextbookAuth; // 纸质四会课 权限
57 private DateTime expireTimePaperTextbook; // 纸质四会课 过期时间 51 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