Toggle navigation
Toggle navigation
This project
Loading...
Sign in
huayandong
/
recommend-api
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
huayandong
2019-01-10 15:35:41 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
2c8d973c2fb379935eaa81cccdd015548ee6841d
2c8d973c
1 parent
00cfa7c2
add api
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
32 additions
and
0 deletions
boxfish-paper/paper-20181228.md
boxfish-paper/paper-20181228.md
View file @
2c8d973
...
...
@@ -165,5 +165,37 @@ bookName | String | 书名
Response:
```
text
private Boolean continueSchedule = false; // 是否继续轮询标识
private ImageEmptyType emptyType; // 为空类型:枚举值
private Boolean submitIsComplete; // 是否提交完整
private String paperId;
private String paperName;
private String courseId;
private Boolean flagNotes;
private Boolean svHasConsume;
private CourseQrCodeEntity.CourseType courseTypeV3; // 智能培优课类型
private List<String> nationalKnowledge = new ArrayList<>();
private List<Integer> totalPageId = new ArrayList<>();
private List<Integer> finishedPageId = new ArrayList<>();
private List<Integer> unFinishedPageId = new ArrayList<>();
private List<ImagePart> successImageList = new ArrayList<>();
```
> 返回体中新增加字段:`continueSchedule`,当`continueSchedule=true`时,APP需要继续轮询轮询;`continueSchedule=false`,停止轮询,同时返回体重有需要显示的数据
> `ImageEmptyType`枚举值为:
```
text
PAPER_SUBMIT_ZERO, // 学生拍的题都识别失败
PAPER_SUBMIT_MULTI, // 学生拍了多套题
PAPER_NOT_PAPER_V1, // 学生拍的题不是智能三件套的题
PAPER_NOT_PURCHASE; // 学生拍的是三件套的题,但是不属于自己购买的三件套
```
...
...
Please
register
or
login
to post a comment