@@ -100,6 +100,7 @@ public class InterviewEvent extends BaseController {
InterviewDO entity = interviewService.findByInstanceId(flowInstanceId);
entity.setFlowStatus(FLOW_FINISHED);
entity.setFlowFinishtime(LocalDateTime.now());
+ entity.setReport("0");
interviewService.update(entity);
return ok("true");
} else {