代码提交

This commit is contained in:
liang.chao 2025-09-19 16:32:20 +08:00
parent 4eebba5d7e
commit 5dc7b2e874
1 changed files with 15 additions and 0 deletions

View File

@ -124,6 +124,21 @@ public class TransferApplyController extends BaseController {
}
}
@ApiOperation(value = "档案移交申请列表")
@GetMapping("getTransferAuditList")
@SysLog(title = "档案移交审核列表", module = "数据/档案移交->档案移交申请", businessType = OperaType.QUERY, details = "档案移交审核列表", logType = 1)
@RequiresPermissions("transfer:audit:list")
public TableDataInfo getTransferAuditList(TransferApplyDto dto) {
try {
startPage();
List<TransferApplyDto> list = transferApplyService.list(dto);
return getDataTable(list);
} catch (Exception e) {
log.error(e.toString(), e);
return getDataTable(new ArrayList<>());
}
}
@ApiOperation(value = "档案移交审核")
@PostMapping("auditTransferApply")
@SysLog(title = "档案移交审核", module = "数据/档案移交->档案移交申请", businessType = OperaType.UPDATE, details = "档案移交审核", logType = 1)