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/templatenode/nodejson/CounterSignConfig.java | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 53 insertions(+), 0 deletions(-)
diff --git a/jnpf-flowable/jnpf-flowable-entity/src/main/java/jnpf/flowable/model/templatenode/nodejson/CounterSignConfig.java b/jnpf-flowable/jnpf-flowable-entity/src/main/java/jnpf/flowable/model/templatenode/nodejson/CounterSignConfig.java
new file mode 100644
index 0000000..d5b462c
--- /dev/null
+++ b/jnpf-flowable/jnpf-flowable-entity/src/main/java/jnpf/flowable/model/templatenode/nodejson/CounterSignConfig.java
@@ -0,0 +1,53 @@
+package jnpf.flowable.model.templatenode.nodejson;
+
+import io.swagger.v3.oas.annotations.media.Schema;
+import jnpf.flowable.model.util.FlowNature;
+import lombok.Data;
+
+import java.io.Serializable;
+
+/**
+ * 浼氱娴佽浆閰嶇疆
+ *
+ * @author JNPF@YinMai Info. Co., Ltd
+ * @version 5.0.x
+ * @since 2024/4/16 10:09
+ */
+@Data
+public class CounterSignConfig implements Serializable {
+ /**
+ * 閫氳繃绫诲瀷 0.鏃� 1.鐧惧垎姣� 2.浜烘暟
+ */
+ @Schema(description = "閫氳繃绫诲瀷")
+ private Integer auditType = FlowNature.PERCENT;
+ /**
+ * 閫氳繃鐧惧垎姣�
+ */
+ @Schema(description = "閫氳繃鐧惧垎姣�")
+ private Integer auditRatio = 100;
+ /**
+ * 閫氳繃浜烘暟
+ */
+ @Schema(description = "閫氳繃浜烘暟")
+ private Integer auditNum = 1;
+ /**
+ * 鎷掔粷绫诲瀷 0.鏃� 1.鐧惧垎姣� 2.浜烘暟
+ */
+ @Schema(description = "鎷掔粷绫诲瀷")
+ private Integer rejectType = FlowNature.PERCENT;
+ /**
+ * 鎷掔粷鐧惧垎姣�
+ */
+ @Schema(description = "鎷掔粷鐧惧垎姣�")
+ private Integer rejectRatio = 10;
+ /**
+ * 鎷掔粷浜烘暟
+ */
+ @Schema(description = "鎷掔粷浜烘暟")
+ private Integer rejectNum = 1;
+ /**
+ * 璁$畻鏂瑰紡锛�1.瀹炴椂璁$畻 2.寤跺悗璁$畻
+ */
+ @Schema(description = "璁$畻鏂瑰紡")
+ private Integer calculateType = FlowNature.DELAY;
+}
--
Gitblit v1.8.0