| | |
| | | fun autoScore(@RequestParam(value = "districtCode") districtCode: String, |
| | | @RequestParam(value = "time") time: String) = evaluationService.autoScore(districtCode, time) |
| | | |
| | | @GetMapping("/autoScore3") |
| | | fun autoScore3( |
| | | @RequestParam(value = "topTaskId") tGuid: String, |
| | | @RequestParam(value = "sceneTypeId") sceneTypeId: String |
| | | ) = evaluationService.autoScore3(tGuid, sceneTypeId) |
| | | |
| | | @PostMapping("/autoScore") |
| | | fun autoScore2(@RequestParam(value = "subTaskId") subTaskId: String) = evaluationService.autoScore2(subTaskId) |
| | | |