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/template/TemplatePagination.java |   42 ++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 42 insertions(+), 0 deletions(-)

diff --git a/jnpf-flowable/jnpf-flowable-entity/src/main/java/jnpf/flowable/model/template/TemplatePagination.java b/jnpf-flowable/jnpf-flowable-entity/src/main/java/jnpf/flowable/model/template/TemplatePagination.java
new file mode 100644
index 0000000..a922708
--- /dev/null
+++ b/jnpf-flowable/jnpf-flowable-entity/src/main/java/jnpf/flowable/model/template/TemplatePagination.java
@@ -0,0 +1,42 @@
+package jnpf.flowable.model.template;
+
+import com.fasterxml.jackson.annotation.JsonIgnore;
+import io.swagger.v3.oas.annotations.media.Schema;
+import jnpf.base.Pagination;
+import jnpf.permission.model.authorize.AuthorizeVO;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+
+import java.util.ArrayList;
+import java.util.List;
+
+@EqualsAndHashCode(callSuper = true)
+@Data
+@Schema(description = "鍒嗛〉妯″瀷")
+public class TemplatePagination extends Pagination {
+    @Schema(description = "鍒嗙被")
+    private String category;
+    @Schema(description = "鏍囧織")
+    private Integer enabledMark;
+    @Schema(description = "绫诲瀷")
+    private Integer type;
+    @Schema(description = "鏉冮檺杩囨护")
+    private Integer isAuthority = 1;
+    @Schema(description = "鏄惁濮旀墭浠g悊鍒楄〃锛�1-濮旀墭浠g悊鍒楄〃")
+    private Integer isDelegate = 0;
+    @Schema(description = "濮旀墭浜�")
+    private String delegateUser;
+    @Schema(description = "鏄惁鍙戣捣鍒楄〃锛�0-鍚� 1-鏄級")
+    private Integer isLaunch = 0;
+    @Schema(description = "搴旂敤涓诲缓")
+    private String systemId;
+    @JsonIgnore
+    private List<String> templateIdList = new ArrayList<>();
+
+    @Schema(description = "娴佺▼鏈夋潈闄愬垪琛�")
+    private AuthorizeVO authorize;
+    @Schema(description = "琛ㄥ崟绫诲瀷")
+    private Integer isSystemFrom = 0;
+    @Schema(description = "鑷敱娴佺▼")
+    private Integer isFree = 0;
+}

--
Gitblit v1.8.0