@@ -6,7 +6,7 @@ package com.qmth.distributed.print.business.enums;
* @Date: 2024-02-28
*/
public enum CourseEvaluationTypeEnum {
- DEFAULT("默认", "期末成绩", "按阅卷功能模块里的卷面成绩计算", 0), CUSTOM("自定义", "自定义", "", 1);
+ DEFAULT("默认", "期末考试", "按阅卷功能模块里的卷面成绩计算", 0), CUSTOM("自定义", "自定义", "", 1);
private final String type;
@@ -40,7 +40,7 @@ public class CourseWeightController {
public Result findCourseWeightList(@ApiParam(value = "学期id") @RequestParam(required = false) String examId,
@ApiParam(value = "考试id") @RequestParam(required = false) String courseCode) {
SysUser requestUser = (SysUser) ServletUtil.getRequestUser();
- return ResultUtil.ok(courseWeightService.findCourseWeightReport(SystemConstant.convertIdToLong(examId), courseCode,
+ return ResultUtil.ok(courseWeightService.findCourseWeight(SystemConstant.convertIdToLong(examId), courseCode,
requestUser.getId()));
}