entity: `package com.dzl.thinkblog.entity.fansMsg;
import io.swagger.v3.oas.annotations.media.Schema; import lombok.Data;
/**
- @author 光的代言人 */ @Data @Schema(name = "Fan", description = "粉丝实体类") public class Fan { @Schema(description = "id") private Long id; @Schema(description = "用户id") private Long userId; @Schema(description = "粉丝id") private Long fanId; @Schema(description = "关注时间",example = "2023-07-07 07:07:07") private String createTime; @Schema(description = "状态") private String status; } `