blob: cf97e2909475dae208e685f261d81571ce908b4f [file] [log] [blame]
刘嘉昕f28ea232025-04-15 16:55:43 +08001package com.pt5.pthouduan.entity;
2
3import com.baomidou.mybatisplus.annotation.TableId;
4import com.baomidou.mybatisplus.annotation.TableName;
5
6import java.io.Serializable;
7import java.time.LocalDateTime;
8
9/**
10 * <p>
11 *
12 * </p>
13 *
14 * @author ljx
15 * @since 2025-04-14
16 */
17@TableName("follower")
18public class Follower implements Serializable {
19
20 private static final long serialVersionUID = 1L;
21
22 @TableId("userid")
23 private Long userid;
24
25 //@TableId("Use_userid")
26 private Long useUserid;
27
28 private LocalDateTime followstarttime;
29
30 public Long getUserid() {
31 return userid;
32 }
33
34 public void setUserid(Long userid) {
35 this.userid = userid;
36 }
37
38 public Long getUseUserid() {
39 return useUserid;
40 }
41
42 public void setUseUserid(Long useUserid) {
43 this.useUserid = useUserid;
44 }
45
46 public LocalDateTime getFollowstarttime() {
47 return followstarttime;
48 }
49
50 public void setFollowstarttime(LocalDateTime followstarttime) {
51 this.followstarttime = followstarttime;
52 }
53
54 @Override
55 public String toString() {
56 return "Follower{" +
57 "userid = " + userid +
58 ", useUserid = " + useUserid +
59 ", followstarttime = " + followstarttime +
60 "}";
61 }
62}