| 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 + |
| "}"; |
| } |
| } |