|
|
|
@ -3,6 +3,7 @@ package com.msdw.tms.controller; |
|
|
|
|
import com.msdw.tms.api.AchievementManagementApi; |
|
|
|
|
import com.msdw.tms.common.utils.R; |
|
|
|
|
import com.msdw.tms.entity.*; |
|
|
|
|
import com.msdw.tms.entity.vo.AchievementManagementVO; |
|
|
|
|
import com.msdw.tms.entity.vo.ResultsVo; |
|
|
|
|
import com.msdw.tms.service.AchievementManagementService; |
|
|
|
|
import com.msdw.tms.service.ProjectRecordService; |
|
|
|
@ -276,4 +277,14 @@ public class AchievementManagementController implements AchievementManagementApi |
|
|
|
|
public R deleteReportByProjectId(@RequestParam Integer projectId) { |
|
|
|
|
return service.deleteReportByProjectId(projectId); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 成绩管理:虚拟仿真实验成绩管理 |
|
|
|
|
*/ |
|
|
|
|
@Override |
|
|
|
|
@GetMapping("/getImitationAchievement") |
|
|
|
|
public R getImitationAchievement(@RequestParam(required = true) Integer projectId) { |
|
|
|
|
List<AchievementManagementVO> result = service.getImitationAchievement(projectId); |
|
|
|
|
return R.ok().put("data", result); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|