代码提交
This commit is contained in:
parent
4eebba5d7e
commit
5dc7b2e874
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in New Issue