|
|
@ -65,7 +65,7 @@ public class AuthenticateController {
|
|
|
|
* @param createReqVO
|
|
|
|
* @param createReqVO
|
|
|
|
* @return
|
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
@PostMapping("create/apply")
|
|
|
|
@PostMapping("/create/apply")
|
|
|
|
@Operation(summary = "创建档案鉴定申请")
|
|
|
|
@Operation(summary = "创建档案鉴定申请")
|
|
|
|
@PreAuthorize("@ss.hasPermission('archives:authenticate:create')")
|
|
|
|
@PreAuthorize("@ss.hasPermission('archives:authenticate:create')")
|
|
|
|
public CommonResult<Long> createApply(@Valid @RequestBody AuthenticateCreateReqVO createReqVO) {
|
|
|
|
public CommonResult<Long> createApply(@Valid @RequestBody AuthenticateCreateReqVO createReqVO) {
|
|
|
@ -73,6 +73,7 @@ public class AuthenticateController {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@Operation(summary = "创建档案鉴定历史")
|
|
|
|
@Operation(summary = "创建档案鉴定历史")
|
|
|
|
@PreAuthorize("@ss.hasPermission('archives:authenticate:create')")
|
|
|
|
@PreAuthorize("@ss.hasPermission('archives:authenticate:create')")
|
|
|
|
|
|
|
|
@PostMapping("/create")
|
|
|
|
public CommonResult<Long> createAuthenticate(@Valid @RequestBody AuthenticateCreateReqVO createReqVO) {
|
|
|
|
public CommonResult<Long> createAuthenticate(@Valid @RequestBody AuthenticateCreateReqVO createReqVO) {
|
|
|
|
return success(authenticateService.createAuthenticate(createReqVO));
|
|
|
|
return success(authenticateService.createAuthenticate(createReqVO));
|
|
|
|
}
|
|
|
|
}
|
|
|
|