From 3807a2754a9ea195be9fb43b6cac06b8293c2fc6 Mon Sep 17 00:00:00 2001
From: zxl <763096477@qq.com>
Date: 星期四, 11 十二月 2025 18:06:03 +0800
Subject: [PATCH] 工作台

---
 business/src/main/java/com/ycl/domain/form/AuditHistoryForm.java |   65 ++++++++++++++++++++++++++++++++
 1 files changed, 65 insertions(+), 0 deletions(-)

diff --git a/business/src/main/java/com/ycl/domain/form/AuditHistoryForm.java b/business/src/main/java/com/ycl/domain/form/AuditHistoryForm.java
new file mode 100644
index 0000000..7eae288
--- /dev/null
+++ b/business/src/main/java/com/ycl/domain/form/AuditHistoryForm.java
@@ -0,0 +1,65 @@
+package com.ycl.domain.form;
+
+
+import com.ycl.domain.entity.AuditHistory;
+import com.ycl.domain.entity.WorkStationSchedule;
+import com.ycl.system.domain.base.AbsForm;
+import lombok.Data;
+import org.springframework.beans.BeanUtils;
+import org.springframework.lang.NonNull;
+
+/**
+ * nongtou-project-java
+ *
+ * @author : zxl
+ * @date : 2025-12-11 10:19
+ **/
+@Data
+public class AuditHistoryForm extends AbsForm {
+
+    /**
+     * 浠诲姟id
+     */
+    private String taskId;
+    /**
+     * 浠诲姟key
+     */
+    private String taskDefinitionKey;
+    /**
+     * 鏌ョ湅浜篿d
+     */
+    private String viewer;
+    /**
+     * 鎻愪氦浜洪儴闂�
+     */
+    private String commitDept;
+    /**
+     * 1:鎻愪氦锛�2:瀹℃牳锛�3:椹冲洖锛�4:杞氦
+     * @see com.ycl.common.enums.business.AuditTypeEnum
+     */
+    private String auditType;
+    /**
+     * 鏄惁闃呰(0:鏈锛�1:宸茶)
+     */
+    private String isRead;
+    /**
+     * 涓氬姟id
+     */
+    private String businessKey;
+    /**
+     * 涓氬姟琛�
+     */
+    private String businessTable;
+    /**
+     * 鍐呭锛堣妭鐐瑰悕绉帮級
+     */
+    private String content;
+
+    public static AuditHistory getEntityByForm(@NonNull AuditHistoryForm form, AuditHistory entity) {
+        if(entity == null) {
+            entity = new AuditHistory();
+        }
+        BeanUtils.copyProperties(form, entity);
+        return entity;
+    }
+}

--
Gitblit v1.8.0