From e8109eee3549d43fc4de2fe4286e29a4152f824d Mon Sep 17 00:00:00 2001
From: zepengdev <lzpsmith@outlook.com>
Date: Wed, 04 Jun 2025 08:38:07 +0800
Subject: [PATCH] 删除CreateBy、UpdateBy赋值

---
 oying-system/src/main/java/com/oying/modules/pc/category/view/PlatformCategoryAdminView.java |   29 +++++++++++++++++++++++++++++
 1 files changed, 29 insertions(+), 0 deletions(-)

diff --git a/oying-system/src/main/java/com/oying/modules/pc/category/view/PlatformCategoryAdminView.java b/oying-system/src/main/java/com/oying/modules/pc/category/view/PlatformCategoryAdminView.java
new file mode 100644
index 0000000..be1d942
--- /dev/null
+++ b/oying-system/src/main/java/com/oying/modules/pc/category/view/PlatformCategoryAdminView.java
@@ -0,0 +1,29 @@
+package com.oying.modules.pc.category.view;
+
+import lombok.Data;
+
+import java.io.Serializable;
+import java.time.LocalDateTime;
+
+@Data
+public class PlatformCategoryAdminView implements Serializable {
+
+    private Long categoryId;
+
+    private String name;
+
+    private Integer sortWeight;
+
+    private String iconUrl;
+
+    private Integer active;
+
+    private String createBy;
+
+    private LocalDateTime createTime;
+
+    private String updateBy;
+
+    private LocalDateTime updateTime;
+
+}

--
Gitblit v1.9.3