feat(REQ-2924) - 新增审批日志的实体

This commit is contained in:
wangli 2024-09-02 10:59:57 +08:00
parent a4df310e54
commit 82be020031
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> {
}