应征入伍保留学籍申请表附件删除

This commit is contained in:
2025-11-21 17:29:01 +08:00
parent 1986242cab
commit 76be171955
9 changed files with 66 additions and 0 deletions

View File

@@ -127,4 +127,15 @@ public class RtEnlistmentReserveAttachController extends BaseController {
public AjaxResult remove(@PathVariable Long[] ids) {
return toAjax(rtEnlistmentReserveAttachService.deleteRtEnlistmentReserveAttachByIds(ids));
}
/**
* 删除保留学籍申请附件(入伍通知书等)
*/
@PreAuthorize("@ss.hasPermi('routine:enlistmentReserveAttach:remove')")
@Log(title = "保留学籍申请附件(入伍通知书等)", businessType = BusinessType.DELETE)
@PostMapping("/deleteRtEnlistmentReserve")
@ApiOperation("删除保留学籍申请附件(入伍通知书等)")
public AjaxResult deleteRtEnlistmentReserveAttachByFileNameAndStuName(String fileName, String studentName) {
return toAjax(rtEnlistmentReserveAttachService.deleteRtEnlistmentReserveAttachByFileNameAndStuName(fileName, studentName));
}
}