From 34981c30a78e8bbd7791131059a9210f9928b62c Mon Sep 17 00:00:00 2001
From: 刘光辉 <347230014@qq.com>
Date: 星期四, 17 九月 2026 09:24:09 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/master' into master

---
 jnpf-flowable/jnpf-flowable-entity/src/main/java/jnpf/flowable/model/operator/OperatorVo.java |  173 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 173 insertions(+), 0 deletions(-)

diff --git a/jnpf-flowable/jnpf-flowable-entity/src/main/java/jnpf/flowable/model/operator/OperatorVo.java b/jnpf-flowable/jnpf-flowable-entity/src/main/java/jnpf/flowable/model/operator/OperatorVo.java
new file mode 100644
index 0000000..6845743
--- /dev/null
+++ b/jnpf-flowable/jnpf-flowable-entity/src/main/java/jnpf/flowable/model/operator/OperatorVo.java
@@ -0,0 +1,173 @@
+package jnpf.flowable.model.operator;
+
+import io.swagger.v3.oas.annotations.media.Schema;
+import lombok.Data;
+
+import java.util.Date;
+
+/**
+ * 绫荤殑鎻忚堪
+ *
+ * @author JNPF@YinMai Info. Co., Ltd
+ * @version 5.0.x
+ * @since 2024/4/18 15:23
+ */
+@Data
+public class OperatorVo {
+    /**
+     * 涓婚敭
+     */
+    @Schema(description = "涓婚敭")
+    private String id;
+    /**
+     * 鑺傜偣鍚嶇О
+     */
+    @Schema(description = "鑺傜偣鍚嶇О")
+    private String nodeName;
+    /**
+     * 鑺傜偣缂栫爜
+     */
+    @Schema(description = "鑺傜偣缂栫爜")
+    private String nodeCode;
+    /**
+     * 浠诲姟id
+     */
+    @Schema(description = "浠诲姟id")
+    private String taskId;
+    /**
+     * 鑺傜偣id
+     */
+    @Schema(description = "鑺傜偣id")
+    private String nodeId;
+    /**
+     * 鍔犵缁忓姙鐖剁骇id
+     */
+    @Schema(description = "鍔犵缁忓姙鐖剁骇id")
+    private String parentId;
+    /**
+     * 澶勭悊鏃堕棿
+     */
+    @Schema(description = "澶勭悊鏃堕棿")
+    private Date handleTime;
+    /**
+     * 澶勭悊浜篿d
+     */
+    @Schema(description = "澶勭悊浜篿d")
+    private String handleId;
+    /**
+     * 澶勭悊鐘舵��
+     */
+    @Schema(description = "澶勭悊鐘舵��")
+    private Integer handleStatus;
+    /**
+     * 澶勭悊鍙傛暟
+     */
+    @Schema(description = "澶勭悊鍙傛暟")
+    private String handleParameter;
+    /**
+     * 閫�鍥炲弬鏁�
+     */
+    @Schema(description = "閫�鍥炲弬鏁�")
+    private String backParameter;
+    /**
+     * 寮�濮嬪鐞嗘椂闂�
+     */
+    @Schema(description = "寮�濮嬪鐞嗘椂闂�")
+    private Date startHandleTime;
+    /**
+     * 绛炬敹鏃堕棿
+     */
+    @Schema(description = "绛炬敹鏃堕棿")
+    private Date signTime;
+    /**
+     * 鎴鏃堕棿
+     */
+    @Schema(description = "鎴鏃堕棿")
+    private Date duedate;
+    /**
+     * 鍗忓姙id
+     */
+    @Schema(description = "鍗忓姙id")
+    private String assistId;
+    /**
+     * 鑽夌鏁版嵁
+     */
+    @Schema(description = "鑽夌鏁版嵁")
+    private String draftData;
+    /**
+     * 鏄惁鍔炵悊鑺傜偣(0鍚� 1鏄�)
+     */
+    @Schema(description = "鏄惁鍔炵悊鑺傜偣")
+    private Integer isProcessing;
+    /**
+     * 搴旂敤鍚嶇О
+     */
+    @Schema(description = "搴旂敤鍚嶇О")
+    private String systemName;
+
+    /* --------------- 浠诲姟鐩稿叧灞炴�� --------------- */
+    /**
+     * 浠诲姟鏍囬
+     */
+    @Schema(description = "浠诲姟鏍囬")
+    private String fullName;
+    /**
+     * 娴佺▼鍚嶇О
+     */
+    @Schema(description = "娴佺▼鍚嶇О")
+    private String flowName;
+    /**
+     * 绱ф�ョ▼搴�
+     */
+    @Schema(description = "绱ф�ョ▼搴�")
+    private Integer flowUrgent;
+    /**
+     * 褰撳墠鑺傜偣鍚嶇О
+     */
+    @Schema(description = "褰撳墠鑺傜偣鍚嶇О")
+    private String currentNodeName;
+    /**
+     * 鍒涘缓浜篿d
+     */
+    @Schema(description = "鍒涘缓浜篿d")
+    private String creatorUserId;
+    /**
+     * 鍒涘缓浜�
+     */
+    @Schema(description = "鍒涘缓浜�")
+    private String creatorUser;
+    /**
+     * 鍒涘缓鏃堕棿
+     */
+    @Schema(description = "鍒涘缓鏃堕棿")
+    private Date creatorTime;
+    /**
+     * 浠诲姟
+     */
+    @Schema(description = "浠诲姟")
+    private Integer status;
+
+    @Schema(description = "鐗堟湰涓婚敭")
+    private String flowId;
+
+    @Schema(description = "鐗堟湰")
+    private String flowVersion;
+
+    @Schema(description = "寮�濮嬫椂闂�")
+    private Date startTime;
+
+    @Schema(description = "娴佺▼鍒嗙被")
+    private String flowCategory;
+
+    private String delegateUser;
+    /**
+     * 缁忓姙瀹℃壒浜篿d
+     */
+    @Schema(description = "缁忓姙瀹℃壒浜篿d")
+    private String operatorHandleId;
+    /**
+     * 璁板綍鍒涘缓浜篿d
+     */
+    @Schema(description = "璁板綍鍒涘缓浜篿d")
+    private String recordCreatorUserId;
+}

--
Gitblit v1.8.0