From 2705449e4cf84b135bceb49df8b583987abf1f14 Mon Sep 17 00:00:00 2001
From: fuliqi <fuliqi@qq.com>
Date: 星期五, 21 二月 2025 10:17:02 +0800
Subject: [PATCH] 缩短线程池存活时长
---
ycl-pojo/src/main/java/com/ycl/platform/domain/query/CheckRuleQuery.java | 39 +++++++++++++++++++++++++++++++++++++++
1 files changed, 39 insertions(+), 0 deletions(-)
diff --git a/ycl-pojo/src/main/java/com/ycl/platform/domain/query/CheckRuleQuery.java b/ycl-pojo/src/main/java/com/ycl/platform/domain/query/CheckRuleQuery.java
new file mode 100644
index 0000000..24fd731
--- /dev/null
+++ b/ycl-pojo/src/main/java/com/ycl/platform/domain/query/CheckRuleQuery.java
@@ -0,0 +1,39 @@
+package com.ycl.platform.domain.query;
+
+import annotation.Excel;
+import com.ycl.platform.base.AbsQuery;
+import io.swagger.annotations.ApiModel;
+import lombok.Data;
+import lombok.experimental.Accessors;
+
+/**
+ * 涓嬪彂宸ュ崟鏌ヨ
+ *
+ */
+@Data
+@Accessors(chain = true)
+@ApiModel(value = "鑰冩牳瑙勫垯绠$悊", description = "鑰冩牳瑙勫垯绠$悊")
+public class CheckRuleQuery extends AbsQuery {
+ /**
+ * 妯℃澘id
+ */
+ private Integer templateId;
+ /**
+ * 瀹℃牳鐘舵��
+ */
+ private Integer auditState;
+ /**
+ * 瑙勫垯鍚嶇О
+ */
+ private String ruleName;
+ /**
+ * 瑙勫垯绫诲瀷
+ */
+ private Integer ruleCategory;
+ /**
+ * 鑰冩牳绫诲瀷
+ */
+ private Integer examineCategory;
+
+
+}
--
Gitblit v1.8.0