|
@@ -196,7 +196,8 @@ public class ExamRecordForMarkingCloudServiceProvider extends ControllerSupport
|
|
|
* @return
|
|
|
*/
|
|
|
@Override
|
|
|
- public GetSingleExamRecordDataResp getSingleExamRecordData(GetSingleExamRecordDataReq req) {
|
|
|
+ @PostMapping("/getSingleExamRecordData")
|
|
|
+ public GetSingleExamRecordDataResp getSingleExamRecordData(@RequestBody GetSingleExamRecordDataReq req) {
|
|
|
Check.isNull(req.getId(), "id不能为空");
|
|
|
ExamRecordDataEntity entity = GlobalHelper.getEntity(examRecordDataRepo, req.getId(), ExamRecordDataEntity.class);
|
|
|
if (entity == null) {
|