com.codingapi.springboot.flow.event.FlowRecordEvent Maven / Gradle / Ivy
package com.codingapi.springboot.flow.event;
import com.codingapi.springboot.flow.domain.FlowRecord;
import com.codingapi.springboot.framework.event.IEvent;
/**
* 流程记录事件
*/
public record FlowRecordEvent(FlowRecord record) implements IEvent {
}