From d346846239a8a39246c464dc634f5fd72add99ab Mon Sep 17 00:00:00 2001
From: maven <2163098428@qq.com>
Date: 星期二, 26 八月 2025 15:22:15 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/pim-jlmy' into pim-jlmy

---
 main-business/src/main/java/com/ruoyi/business/other/pojo/CommonFile.java |   40 ++++++++++++++++++++++++++++++++++++++++
 1 files changed, 40 insertions(+), 0 deletions(-)

diff --git a/main-business/src/main/java/com/ruoyi/business/other/pojo/CommonFile.java b/main-business/src/main/java/com/ruoyi/business/other/pojo/CommonFile.java
new file mode 100644
index 0000000..10081a3
--- /dev/null
+++ b/main-business/src/main/java/com/ruoyi/business/other/pojo/CommonFile.java
@@ -0,0 +1,40 @@
+package com.ruoyi.business.other.pojo;
+
+import com.baomidou.mybatisplus.annotation.*;
+import lombok.Data;
+
+import java.time.LocalDateTime;
+
+/**
+ * 閫氱敤闄勪欢涓婁紶琛�
+ */
+
+@Data
+@TableName("common_file")
+public class CommonFile {
+
+    private static final long serialVersionUID = 1L;
+
+    @TableId(type = IdType.AUTO)
+    private Long id;
+
+    /** 鍏宠仈琛ㄤ富閿瓺 */
+    private Long commonId;
+
+    /** 鏂囦欢鍚嶇О */
+    private String name;
+
+    /** 鏂囦欢璺緞 */
+    private String url;
+
+    /** 鍏宠仈琛� */
+    private Integer type;
+
+    /** 鍒涘缓鏃堕棿 */
+    @TableField(fill = FieldFill.INSERT)
+    private LocalDateTime createTime;
+
+    /** 鏇存柊鏃堕棿 */
+    @TableField(fill = FieldFill.INSERT_UPDATE)
+    private LocalDateTime updateTime;
+}
\ No newline at end of file

--
Gitblit v1.9.3