huayandong

update doc api

@@ -97,3 +97,63 @@ @@ -97,3 +97,63 @@
97 "classSmallOrderId": 326 97 "classSmallOrderId": 326
98 } 98 }
99 ``` 99 ```
  100 +
  101 +
  102 +##### 6. 查询学生已创建一对一课程订单接口
  103 +
  104 +- URL: {{localhost}}/boxfish-online-card/classOnline/manage/editCandidateStudent
  105 +- Method: POST
  106 +- RequestBody:
  107 +
  108 +```json5
  109 +{
  110 + "operationAccount": "xxx@b.cn",
  111 + "flagEnable": false,
  112 + "classSmallOrderId": 326
  113 +}
  114 +```
  115 +
  116 +
  117 +##### 7. 一对一课表查询
  118 +
  119 +- URL: {{localhost}}/boxfish-online-card/classOnline/manager/queryStudentSchedule
  120 +- Method: POST
  121 +- RequestBody:
  122 +
  123 +```json5
  124 +{
  125 + "studentId": 100000006030,
  126 + "orderCode": "PGBYZCOR-DEMOV207B-SINGTON"
  127 +}
  128 +```
  129 +
  130 +> 返回体结构
  131 +
  132 +```java
  133 +public static class ScheduleDetail {
  134 + private Long classSmallInfoId; // 小班课ID
  135 +
  136 + private Long classSmallScheduleId; // 课表ID
  137 + private String classId;
  138 + private ClassType classType;
  139 + private Preference.Grade grade;
  140 + private String gradeDesc;
  141 +
  142 + private String courseId;
  143 + private String courseProjectName;
  144 + private String courseNameChinese;
  145 + private String courseNameEnglish;
  146 +
  147 + private Long teacherId;
  148 + private String teacherName;
  149 +
  150 + private DateTime startTime;
  151 + private DateTime endTime;
  152 + private DateTime deadTime;
  153 +
  154 + private String orderCode;
  155 + private String packageCode;
  156 +
  157 + private Boolean flagFrozen; // 课程是否冻结
  158 +}
  159 +```