Merge branch 'feature/REQ-2924' of https://axzsource.com/universal/infrastructure/backend/workflow-engine into feature/REQ-2924

This commit is contained in:
yangqicheng 2024-09-02 11:15:31 +08:00
commit a4f45f4449
2 changed files with 18 additions and 0 deletions

View File

@ -44,6 +44,12 @@ public class InternalExtAxTaskInstEvent_lo_Listener extends AbstractBpmnEventLis
return Integer.MIN_VALUE;
}
@Override
public void onAssigned(DelegateTask delegateTask) {
// 用于创建该流程实例发起人的日志
BpmnTaskEventListener.super.onAssigned(delegateTask);
}
@Override
public void onCreated(DelegateTask delegateTask) {
String assignee;

View File

@ -0,0 +1,12 @@
package cn.axzo.workflow.core.repository.entity;
import cn.axzo.framework.data.mybatisplus.model.BaseEntity;
/**
* TODO
*
* @author wangli
* @since 2024-08-30 15:29
*/
public class ExtAxProcessLog extends BaseEntity<ExtAxProcessLog> {
}