|
|
@ -8,6 +8,7 @@ import io.swagger.annotations.ApiParam; |
|
|
|
import org.springframework.web.bind.annotation.RequestParam; |
|
|
|
import org.springframework.web.bind.annotation.RequestParam; |
|
|
|
|
|
|
|
|
|
|
|
import javax.servlet.http.HttpServletResponse; |
|
|
|
import javax.servlet.http.HttpServletResponse; |
|
|
|
|
|
|
|
import java.util.List; |
|
|
|
|
|
|
|
|
|
|
|
@Api(value = "成绩管理", tags = "成绩管理") |
|
|
|
@Api(value = "成绩管理", tags = "成绩管理") |
|
|
|
public interface AchievementManagementApi { |
|
|
|
public interface AchievementManagementApi { |
|
|
@ -79,10 +80,10 @@ public interface AchievementManagementApi { |
|
|
|
@ApiOperation(value = "发布成绩", notes = "发布成绩--修改教师签名") |
|
|
|
@ApiOperation(value = "发布成绩", notes = "发布成绩--修改教师签名") |
|
|
|
R updateSignatrue(@ApiParam(value = "实验报告主键reportId + 是否使用教师签名isSignature + 教师签名id signatureId + 教师评语comment") ExperimentalReportEntity entity); |
|
|
|
R updateSignatrue(@ApiParam(value = "实验报告主键reportId + 是否使用教师签名isSignature + 教师签名id signatureId + 教师评语comment") ExperimentalReportEntity entity); |
|
|
|
|
|
|
|
|
|
|
|
@ApiOperation(value = "成绩管理删除项目", notes = "将项目管理下的成绩管理删除") |
|
|
|
@ApiOperation(value = "成绩管理批量删除项目", notes = "将项目管理下的成绩管理批量删除") |
|
|
|
R deleteReportById(@ApiParam(value = "项目id", required = true) Integer projectId, |
|
|
|
R deleteReportByIds(@ApiParam(value = "项目id", required = true) List<Integer> projectIds, |
|
|
|
@ApiParam(value = "项目类型(0练习,1考核)", required = true) Integer projectPermissions, |
|
|
|
@ApiParam(value = "项目类型(0练习,1考核)", required = true) Integer projectPermissions, |
|
|
|
@ApiParam(value = "教学实验id",required = false) Integer id); |
|
|
|
@ApiParam(value = "教学实验id",required = false) List<Integer> ids); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ApiOperation(value = "成绩管理:虚拟仿真实验成绩管理", notes = "成绩管理:虚拟仿真实验成绩管理") |
|
|
|
@ApiOperation(value = "成绩管理:虚拟仿真实验成绩管理", notes = "成绩管理:虚拟仿真实验成绩管理") |
|
|
|