|
@@ -472,4 +472,13 @@ public class StudentSelectSupervisorRecordController {
|
|
|
public CommonResult<List<StudentSelectSupervisorRecordRespVO>> getRecordSelectSupervisorRecordList(@Valid StudentSelectSupervisorRecordPageReqVO listReqVO) {
|
|
|
return success(BeanUtils.toBean(studentSelectSupervisorRecordService.getStudentSelectSupervisorRecordList(listReqVO), StudentSelectSupervisorRecordRespVO.class));
|
|
|
}
|
|
|
+
|
|
|
+ //返回当前导师的签名历史记录
|
|
|
+ @GetMapping("/getSupervisorSignature")
|
|
|
+ @Operation(summary = "获取导师的最近一次的签名")
|
|
|
+ @PreAuthorize("@ss.hasPermission('system:student-select-supervisor-record:getSupervisorSignature')")
|
|
|
+ public CommonResult<String> getSupervisorSignatures() {
|
|
|
+ Long loginId =SecurityFrameworkUtils.getLoginUserId();
|
|
|
+ return success(studentSelectSupervisorRecordService.getSupervisorSignatureById(loginId));
|
|
|
+ }
|
|
|
}
|