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/monitor/MonitorVo.java | 157 ++++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 157 insertions(+), 0 deletions(-)
diff --git a/jnpf-flowable/jnpf-flowable-entity/src/main/java/jnpf/flowable/model/monitor/MonitorVo.java b/jnpf-flowable/jnpf-flowable-entity/src/main/java/jnpf/flowable/model/monitor/MonitorVo.java
new file mode 100644
index 0000000..5e50eb4
--- /dev/null
+++ b/jnpf-flowable/jnpf-flowable-entity/src/main/java/jnpf/flowable/model/monitor/MonitorVo.java
@@ -0,0 +1,157 @@
+package jnpf.flowable.model.monitor;
+
+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/5/15 11:00
+ */
+@Data
+public class MonitorVo {
+ /**
+ * 涓婚敭
+ */
+ @Schema(description = "涓婚敭")
+ private String id;
+ /**
+ * 浠诲姟缂栫爜
+ */
+ @Schema(description = "浠诲姟缂栫爜")
+ private String enCode;
+
+ /**
+ * 浠诲姟鏍囬
+ */
+ @Schema(description = "浠诲姟鏍囬")
+ private String fullName;
+
+ /**
+ * 娴佺▼鍚嶇О
+ */
+ @Schema(description = "娴佺▼鍚嶇О")
+ private String flowName;
+
+ /**
+ * 娴佺▼缂栫爜
+ */
+ @Schema(description = "娴佺▼缂栫爜")
+ private String flowCode;
+
+ /**
+ * 浠诲姟鐘舵��
+ */
+ @Schema(description = "浠诲姟鐘舵��")
+ private Integer status;
+
+ /**
+ * 娴佺▼鍒嗙被
+ */
+ @Schema(description = "娴佺▼鍒嗙被")
+ private String flowCategory;
+
+ /**
+ * 娴佺▼绫诲瀷
+ */
+ @Schema(description = "娴佺▼绫诲瀷")
+ private String flowType;
+
+ /**
+ * 娴佺▼鐗堟湰
+ */
+ @Schema(description = "娴佺▼鐗堟湰")
+ private String flowVersion;
+
+ /**
+ * 鍚屾寮傛锛�0锛氬悓姝ワ紝1锛氬紓姝ワ級
+ */
+ @Schema(description = "鍚屾寮傛锛�0锛氬悓姝ワ紝1锛氬紓姝ワ級")
+ private Integer isAsync;
+
+ /**
+ * 鐖剁骇瀹炰緥鑺傜偣缂栫爜
+ */
+ @Schema(description = "鐖剁骇瀹炰緥鑺傜偣缂栫爜")
+ private String parentCode;
+
+ /**
+ * 鐖剁骇瀹炰緥id
+ */
+ @Schema(description = "鐖剁骇瀹炰緥id")
+ private String parentId;
+
+ /**
+ * 绱ф�ョ▼搴�
+ */
+ @Schema(description = "绱ф�ョ▼搴�")
+ private Integer flowUrgent;
+
+ /**
+ * 娴佺▼涓婚敭
+ */
+ @Schema(description = "娴佺▼涓婚敭")
+ private String templateId;
+
+ /**
+ * 娴佺▼鐗堟湰涓婚敭
+ */
+ @Schema(description = "娴佺▼鐗堟湰涓婚敭")
+ private String flowId;
+
+ /**
+ * 鏄惁鎵归噺锛�0锛氬惁锛�1锛氭槸锛�
+ */
+ @Schema(description = "鏄惁鎵归噺锛�0锛氬惁锛�1锛氭槸锛�")
+ private Integer isBatch;
+
+ /**
+ * 濮旀墭鐢ㄦ埛
+ */
+ @Schema(description = "濮旀墭鐢ㄦ埛")
+ private String delegateUserId;
+ /**
+ * 寮�濮嬫椂闂�
+ */
+ @Schema(description = "寮�濮嬫椂闂�")
+ private Date startTime;
+ /**
+ * 缁撴潫鏃堕棿
+ */
+ @Schema(description = "缁撴潫鏃堕棿")
+ private Date endTime;
+ /**
+ * 褰撳墠鑺傜偣鍚嶇О
+ */
+ @Schema(description = "褰撳墠鑺傜偣鍚嶇О")
+ private String currentNodeName;
+ /**
+ * 鎸囨淳鑺傜偣
+ */
+ @Schema(description = "鎸囨淳鑺傜偣")
+ private String assignNode;
+ /**
+ * 鍒涘缓浜�
+ */
+ @Schema(description = "鍒涘缓浜�")
+ private String creatorUser;
+ /**
+ * 鍒涘缓鏃堕棿
+ */
+ @Schema(description = "鍒涘缓鏃堕棿")
+ private Date creatorTime;
+ /**
+ * 褰掓。鐘舵��
+ */
+ @Schema(description = "褰掓。鐘舵��")
+ private String isFile;
+ /**
+ * 搴旂敤鍚嶇О
+ */
+ @Schema(description = "搴旂敤鍚嶇О")
+ private String systemName;
+}
--
Gitblit v1.8.0