Showing
1 changed file
with
32 additions
and
0 deletions
@@ -165,5 +165,37 @@ bookName | String | 书名 | @@ -165,5 +165,37 @@ bookName | String | 书名 | ||
165 | 165 | ||
166 | Response: | 166 | Response: |
167 | 167 | ||
168 | +```text | ||
169 | + private Boolean continueSchedule = false; // 是否继续轮询标识 | ||
170 | + | ||
171 | + private ImageEmptyType emptyType; // 为空类型:枚举值 | ||
172 | + private Boolean submitIsComplete; // 是否提交完整 | ||
173 | + | ||
174 | + private String paperId; | ||
175 | + private String paperName; | ||
176 | + | ||
177 | + private String courseId; | ||
178 | + | ||
179 | + private Boolean flagNotes; | ||
180 | + private Boolean svHasConsume; | ||
181 | + private CourseQrCodeEntity.CourseType courseTypeV3; // 智能培优课类型 | ||
182 | + private List<String> nationalKnowledge = new ArrayList<>(); | ||
183 | + | ||
184 | + private List<Integer> totalPageId = new ArrayList<>(); | ||
185 | + private List<Integer> finishedPageId = new ArrayList<>(); | ||
186 | + private List<Integer> unFinishedPageId = new ArrayList<>(); | ||
187 | + | ||
188 | + private List<ImagePart> successImageList = new ArrayList<>(); | ||
189 | +``` | ||
190 | + | ||
168 | > 返回体中新增加字段:`continueSchedule`,当`continueSchedule=true`时,APP需要继续轮询轮询;`continueSchedule=false`,停止轮询,同时返回体重有需要显示的数据 | 191 | > 返回体中新增加字段:`continueSchedule`,当`continueSchedule=true`时,APP需要继续轮询轮询;`continueSchedule=false`,停止轮询,同时返回体重有需要显示的数据 |
192 | + | ||
193 | +> `ImageEmptyType`枚举值为: | ||
194 | +```text | ||
195 | + PAPER_SUBMIT_ZERO, // 学生拍的题都识别失败 | ||
196 | + PAPER_SUBMIT_MULTI, // 学生拍了多套题 | ||
197 | + | ||
198 | + PAPER_NOT_PAPER_V1, // 学生拍的题不是智能三件套的题 | ||
199 | + PAPER_NOT_PURCHASE; // 学生拍的是三件套的题,但是不属于自己购买的三件套 | ||
200 | +``` | ||
169 | 201 |
-
Please register or login to post a comment