|
|
@@ -1,6 +1,6 @@
|
|
|
package cn.seec.seecdataanalysis.controller;
|
|
|
|
|
|
-import cn.seec.seecdataanalysis.dto.ExerciseDTO;
|
|
|
+import cn.seec.seecdataanalysis.dto.ExerciseRecordDTO;
|
|
|
import io.swagger.v3.oas.annotations.Operation;
|
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
|
@@ -13,7 +13,7 @@ public class ExerciseController {
|
|
|
|
|
|
@PostMapping("/report")
|
|
|
@Operation(description = "做题记录上报")
|
|
|
- public Boolean exerciseReport(@RequestBody ExerciseDTO exerciseDTO) {
|
|
|
+ public Boolean exerciseReport(@RequestBody ExerciseRecordDTO exerciseRecordDTO) {
|
|
|
return true;
|
|
|
}
|
|
|
}
|