From 179c4d64313c9b7572778da4aaaf6c6584fe457d Mon Sep 17 00:00:00 2001
From: mitao <2763622819@qq.com>
Date: 星期二, 20 五月 2025 23:48:08 +0800
Subject: [PATCH] 修改文件上传类型限制

---
 springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComActNeighborCircleCommentReplyDO.java |   24 ++++++++----------------
 1 files changed, 8 insertions(+), 16 deletions(-)

diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComActNeighborCircleCommentReplyDO.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComActNeighborCircleCommentReplyDO.java
index fd5fb14..b7bf74a 100644
--- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComActNeighborCircleCommentReplyDO.java
+++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComActNeighborCircleCommentReplyDO.java
@@ -1,11 +1,11 @@
 package com.panzhihua.service_community.model.dos;
 
-import com.baomidou.mybatisplus.annotation.*;
-import lombok.Data;
-
 import java.io.Serializable;
 import java.util.Date;
 
+import com.baomidou.mybatisplus.annotation.*;
+
+import lombok.Data;
 
 /**
  * @auther lyq
@@ -22,7 +22,7 @@
     /**
      * 主键id
      */
-    @TableId(type = IdType.AUTO)
+    @TableId(type = IdType.ASSIGN_ID)
     private Long id;
 
     /**
@@ -78,17 +78,9 @@
 
     @Override
     public String toString() {
-        return "ComActNeighborCircleCommentReplyDO{" +
-                "id=" + id +
-                ", circleId=" + circleId +
-                ", commentId=" + commentId +
-                ", parentId=" + parentId +
-                ", parentUserId=" + parentUserId +
-                ", userId=" + userId +
-                ", replyContent=" + replyContent +
-                ", fabulousNum=" + fabulousNum +
-                ", createAt=" + createAt +
-                ", isRelease=" + isRelease +
-                "}";
+        return "ComActNeighborCircleCommentReplyDO{" + "id=" + id + ", circleId=" + circleId + ", commentId="
+            + commentId + ", parentId=" + parentId + ", parentUserId=" + parentUserId + ", userId=" + userId
+            + ", replyContent=" + replyContent + ", fabulousNum=" + fabulousNum + ", createAt=" + createAt
+            + ", isRelease=" + isRelease + "}";
     }
 }
\ No newline at end of file

--
Gitblit v1.7.1