zxl
2025-04-02 01c29b4b6cfb1a3223cf9e322f33ead42093e77c
business/src/main/java/com/ycl/event/event/TaskLogEvent.java
@@ -26,7 +26,7 @@
    /**
     * 项目id
     */
    private Long projectId;
    private String projectId;
    /**
     * 流程实例id
@@ -37,6 +37,12 @@
     * 任务id
     */
    private String taskId;
    /**
     * 任务key
     */
    private String taskDefKey;
    /**
     * 任务名
     */
@@ -62,7 +68,7 @@
     * @param taskId 任务id
     * @param otherData 其它数据
     */
    public TaskLogEvent(Object source,Long id,Long userId, Long projectId, String processInsId, String taskId, String taskName,ProcessLogEventTypeEnum eventType, Object otherData) {
    public TaskLogEvent(Object source,Long id,Long userId, String projectId, String processInsId, String taskId, String taskDefKey, String taskName,ProcessLogEventTypeEnum eventType, Object otherData) {
        super(source);
        this.id = id;
        this.userId = userId;
@@ -70,6 +76,7 @@
        this.processInsId = processInsId;
        this.eventType = eventType;
        this.taskId = taskId;
        this.taskDefKey = taskDefKey;
        this.taskName = taskName;
        this.otherData = otherData;
    }