This commit is contained in:
dute7liang
2023-12-24 00:31:21 +08:00
parent 7973aa1582
commit cc467a1105
19 changed files with 357 additions and 17 deletions

View File

@@ -0,0 +1,58 @@
package com.ruoyi.cai.domain;
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 CaiUserCount implements Serializable {
private static final long serialVersionUID = 1L;
/**
* 用户ID
*/
@TableId(value = "user_id")
private Integer userId;
/**
* 粉丝总数
*/
private Integer fansCount;
/**
* 关注数
*/
private Integer followCount;
/**
* 访客数
*/
private Integer visitorCount;
/**
* 相册数量
*/
private Integer photoCount;
/**
* 发帖数量
*/
private Integer dynamicCount;
/**
* 收到的礼物数量
*/
private Integer receiveGiftCount;
/**
* 送礼总数量
*/
private Integer giveGiftCount;
private LocalDateTime createTime;
}

View File

@@ -27,7 +27,7 @@ public class CaiUserVisitor implements Serializable {
/**
* 被访用户ID
*/
private Integer userId;
private Long userId;
/**
* 访客用户ID
*/