72 lines
1.3 KiB
Java
72 lines
1.3 KiB
Java
package com.ruoyi.cai.domain;
|
|
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import lombok.Data;
|
|
|
|
import java.io.Serializable;
|
|
import java.time.LocalDateTime;
|
|
|
|
/**
|
|
* 用户信息数量统计对象 cai_user_count
|
|
*
|
|
* @author 77
|
|
* @date 2023-12-24
|
|
*/
|
|
@Data
|
|
@TableName("cai_user_count")
|
|
public class UserCount implements Serializable {
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
/**
|
|
* 用户ID
|
|
*/
|
|
@TableId(value = "user_id",type = IdType.INPUT)
|
|
private Long userId;
|
|
/**
|
|
* 新增粉丝数
|
|
*/
|
|
private Long newFansCount;
|
|
/**
|
|
* 新增访客数
|
|
*/
|
|
private Long newVisitorCount;
|
|
/**
|
|
* 粉丝总数
|
|
*/
|
|
private Long fansCount;
|
|
/**
|
|
* 关注数
|
|
*/
|
|
private Long followCount;
|
|
/**
|
|
* 足迹数
|
|
*/
|
|
private Long footCount;
|
|
/**
|
|
* 访客数
|
|
*/
|
|
private Long visitorCount;
|
|
/**
|
|
* 相册数量
|
|
*/
|
|
private Long photoCount;
|
|
/**
|
|
* 发帖数量
|
|
*/
|
|
private Long dynamicCount;
|
|
/**
|
|
* 收到的礼物数量
|
|
*/
|
|
private Long receiveGiftCount;
|
|
/**
|
|
* 送礼总数量
|
|
*/
|
|
private Long giveGiftCount;
|
|
|
|
private LocalDateTime createTime;
|
|
|
|
}
|