Commit 01c62f91 authored by R10's avatar R10

获取单据结果修改

parent 13d2f877
...@@ -155,13 +155,14 @@ public class AirportConsumerServiceImpl implements AirportConsumerService { ...@@ -155,13 +155,14 @@ public class AirportConsumerServiceImpl implements AirportConsumerService {
@Override @Override
@Consumer(topic = AirportTopic.AIRPORT_PDF_PAPER_TOPIC) @Consumer(topic = AirportTopic.AIRPORT_PDF_PAPER_TOPIC)
public void pdfPaper(AirportPDFPaperMessage message) throws Exception { public void pdfPaper(AirportPDFPaperMessage message) throws Exception {
BizAiDataAuditTaskEntity bizAiDataAuditTaskEntity;
try { try {
List<AuditResultDto> results = new CopyOnWriteArrayList<>(); List<AuditResultDto> results = new CopyOnWriteArrayList<>();
Long taskId = message.getTaskId(); Long taskId = message.getTaskId();
//根据任务id查找任务 //根据任务id查找任务
BizAiDataAuditTaskEntity bizAiDataAuditTaskEntity = bizAiDataAuditTaskService.getWithToken(taskId); bizAiDataAuditTaskEntity = bizAiDataAuditTaskService.getWithToken(taskId);
if (bizAiDataAuditTaskEntity == null) { if (bizAiDataAuditTaskEntity == null) {
throw new BusinessException("任务不存在"); throw new BusinessException("任务不存在");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment