更改配置
Change-Id: Ibd1cf3c212dffe7952cbaab5e41886a3ebaae613
diff --git a/src/main/java/com/pt5/pthouduan/entity/Follower.java b/src/main/java/com/pt5/pthouduan/entity/Follower.java
new file mode 100644
index 0000000..cf97e29
--- /dev/null
+++ b/src/main/java/com/pt5/pthouduan/entity/Follower.java
@@ -0,0 +1,62 @@
+package com.pt5.pthouduan.entity;
+
+import com.baomidou.mybatisplus.annotation.TableId;
+import com.baomidou.mybatisplus.annotation.TableName;
+
+import java.io.Serializable;
+import java.time.LocalDateTime;
+
+/**
+ * <p>
+ *
+ * </p>
+ *
+ * @author ljx
+ * @since 2025-04-14
+ */
+@TableName("follower")
+public class Follower implements Serializable {
+
+ private static final long serialVersionUID = 1L;
+
+ @TableId("userid")
+ private Long userid;
+
+ //@TableId("Use_userid")
+ private Long useUserid;
+
+ private LocalDateTime followstarttime;
+
+ public Long getUserid() {
+ return userid;
+ }
+
+ public void setUserid(Long userid) {
+ this.userid = userid;
+ }
+
+ public Long getUseUserid() {
+ return useUserid;
+ }
+
+ public void setUseUserid(Long useUserid) {
+ this.useUserid = useUserid;
+ }
+
+ public LocalDateTime getFollowstarttime() {
+ return followstarttime;
+ }
+
+ public void setFollowstarttime(LocalDateTime followstarttime) {
+ this.followstarttime = followstarttime;
+ }
+
+ @Override
+ public String toString() {
+ return "Follower{" +
+ "userid = " + userid +
+ ", useUserid = " + useUserid +
+ ", followstarttime = " + followstarttime +
+ "}";
+ }
+}