|
|
@@ -6,8 +6,10 @@ import com.template.model.result.CommonResult;
|
|
|
import io.swagger.annotations.Api;
|
|
|
import io.swagger.annotations.ApiOperation;
|
|
|
import org.springframework.validation.annotation.Validated;
|
|
|
+import org.springframework.web.bind.annotation.GetMapping;
|
|
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
+import org.springframework.web.bind.annotation.RequestParam;
|
|
|
|
|
|
@RequestMapping("/api/smartEvaluateStudent")
|
|
|
@Api(tags = {"SmartEvaluateStudentControllerAPI"}, value = "学生评测")
|
|
|
@@ -41,4 +43,7 @@ public interface SmartEvaluateStudentControllerAPI {
|
|
|
@ApiOperation(value = "查看学生评分详情", httpMethod = "POST")
|
|
|
public CommonResult queryDetailScore(Integer id);
|
|
|
|
|
|
+ @GetMapping(value = "/historicalEvaluation")
|
|
|
+ @ApiOperation(value = "历史考评",notes = "历史考评", httpMethod = "GET")
|
|
|
+ public CommonResult historicalEvaluation(@RequestParam String cardNo);
|
|
|
}
|