This commit is contained in:
dute7liang
2023-12-31 00:00:30 +08:00
parent 6c856eebfb
commit d89b912d64
261 changed files with 911 additions and 929 deletions

View File

@@ -0,0 +1,43 @@
package com.ruoyi.cai.domain;
import com.baomidou.mybatisplus.annotation.*;
import lombok.Data;
import java.io.Serializable;
import java.time.LocalDateTime;
/**
* 关注表对象 cai_user_follow
*
* @author 77
* @date 2023-12-23
*/
@Data
@TableName("cai_user_follow")
public class UserFollow implements Serializable {
private static final long serialVersionUID=1L;
@TableId(value = "id")
private Integer id;
/**
* 关注人ID
*/
private Long userId;
/**
* 被关注人ID
*/
private Long followUser;
/**
* 状态 0 未查看 1 已查看
*/
private Integer isWatch;
/**
* 备注
*/
private String remark;
private LocalDateTime createTime;
}