|
@@ -213,7 +213,8 @@ public class ExamControlController extends ControllerSupport {
|
|
|
/**
|
|
|
* 获取又拍云文件上传签名(微信小程序调用)
|
|
|
*/
|
|
|
- @ApiOperation(value = "获取又拍云文件上传签名(微信小程序调用)")
|
|
|
+ @Deprecated
|
|
|
+ @ApiOperation(value = "获取又拍云文件上传签名(微信小程序调用,废弃)")
|
|
|
@PostMapping("/upyunSignature")
|
|
|
public UpyunSignatureInfo getUpyunSignature(@ModelAttribute @Valid GetYunSignatureReq req) {
|
|
|
return examControlService.getUpyunSignature(req);
|
|
@@ -369,8 +370,8 @@ public class ExamControlController extends ControllerSupport {
|
|
|
examFileAnswerService.saveFileAnswer(acknowledgeId, fileAnswer);
|
|
|
}
|
|
|
|
|
|
- //原接口,不作改动
|
|
|
- @ApiOperation(value = "获取抓拍照片的又拍云签名")
|
|
|
+ @Deprecated
|
|
|
+ @ApiOperation(value = "获取抓拍照片的又拍云签名(废弃)")
|
|
|
@GetMapping("/getCapturePhotoUpYunSign")
|
|
|
public GetUpyunSignDomain getCapturePhotoUpYunSign(GetYunSignDomainQuery query) {
|
|
|
return getUpYunSign(query);
|
|
@@ -441,7 +442,8 @@ public class ExamControlController extends ControllerSupport {
|
|
|
return result;
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "批量获取抓拍照片的又拍云签名")
|
|
|
+ @Deprecated
|
|
|
+ @ApiOperation(value = "批量获取抓拍照片的又拍云签名(废弃)")
|
|
|
@PostMapping("/batchGetCapturePhotoUpYunSign")
|
|
|
public BatchGetUpyunSignDomain batchGetCapturePhotoUpYunSign(@RequestBody BatchGetUpyunSignDomainQuery batchQuery) {
|
|
|
if (batchQuery.getQueryList() == null || batchQuery.getQueryList().isEmpty()) {
|
|
@@ -509,7 +511,7 @@ public class ExamControlController extends ControllerSupport {
|
|
|
}
|
|
|
|
|
|
@Deprecated
|
|
|
- @ApiOperation(value = "获取课程名称(待废弃)")
|
|
|
+ @ApiOperation(value = "获取课程名称(废弃)")
|
|
|
@GetMapping("/courseName/{examRecordDataId}")
|
|
|
public String courseName(@PathVariable Long examRecordDataId) {
|
|
|
CourseInfo info = examRecordDataService.getCourseInfo(examRecordDataId);
|