blob: f3ba6eb3c396af29c7ffd1d863a114bb9df67150 [file] [log] [blame]
夜雨声烦7e6eb382025-04-22 01:18:00 +08001// Follow.java(新增)
2package com.example.g8backend.entity;
3import com.baomidou.mybatisplus.annotation.TableName;
4import lombok.Data;
5import lombok.experimental.Accessors;
6
7import java.time.LocalDateTime;
8
9@Data
10@TableName("user_follows")
11@Accessors(chain = true)
12public class Follow {
13 private Long followerId; // 保持Long类型
14 private Long followedId;
15 private LocalDateTime createdAt;
16}