init
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
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;
|
||||
@@ -22,36 +23,40 @@ public class CaiUserCount implements Serializable {
|
||||
/**
|
||||
* 用户ID
|
||||
*/
|
||||
@TableId(value = "user_id")
|
||||
private Integer userId;
|
||||
@TableId(value = "user_id",type = IdType.INPUT)
|
||||
private Long userId;
|
||||
/**
|
||||
* 粉丝总数
|
||||
*/
|
||||
private Integer fansCount;
|
||||
private Long fansCount;
|
||||
/**
|
||||
* 关注数
|
||||
*/
|
||||
private Integer followCount;
|
||||
private Long followCount;
|
||||
/**
|
||||
* 足迹数
|
||||
*/
|
||||
private Long footCount;
|
||||
/**
|
||||
* 访客数
|
||||
*/
|
||||
private Integer visitorCount;
|
||||
private Long visitorCount;
|
||||
/**
|
||||
* 相册数量
|
||||
*/
|
||||
private Integer photoCount;
|
||||
private Long photoCount;
|
||||
/**
|
||||
* 发帖数量
|
||||
*/
|
||||
private Integer dynamicCount;
|
||||
private Long dynamicCount;
|
||||
/**
|
||||
* 收到的礼物数量
|
||||
*/
|
||||
private Integer receiveGiftCount;
|
||||
private Long receiveGiftCount;
|
||||
/**
|
||||
* 送礼总数量
|
||||
*/
|
||||
private Integer giveGiftCount;
|
||||
private Long giveGiftCount;
|
||||
|
||||
private LocalDateTime createTime;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user