init
This commit is contained in:
@@ -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;
|
||||
|
||||
}
|
||||
@@ -27,7 +27,7 @@ public class CaiUserVisitor implements Serializable {
|
||||
/**
|
||||
* 被访用户ID
|
||||
*/
|
||||
private Integer userId;
|
||||
private Long userId;
|
||||
/**
|
||||
* 访客用户ID
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user