This commit is contained in:
77
2024-03-18 00:07:03 +08:00
parent bd4ad464a5
commit 688ef1d649
25 changed files with 465 additions and 21 deletions

View File

@@ -35,7 +35,7 @@ public class User implements Serializable {
*/
private String nickname;
/**
* 用户类型: 0普通用户 1 内部用户 2 审核人员账号
* 用户类型: 0普通用户 1 内部用户
*/
private Integer type;
/**

View File

@@ -0,0 +1,47 @@
package com.ruoyi.xq.domain;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
import java.io.Serializable;
import java.time.LocalDateTime;
/**
* 用户关注对象 xq_user_star
*
* @author 77
* @date 2024-03-17
*/
@Data
@TableName("xq_user_star")
public class UserStar implements Serializable {
private static final long serialVersionUID=1L;
/**
*
*/
@TableId(value = "id")
private Long id;
/**
* 用户ID
*/
private Long userId;
/**
* 用户号
*/
private String usercode;
/**
* 我关注的用户ID
*/
private Long starUserId;
/**
* 我关注的用户编号
*/
private String starUserCode;
private LocalDateTime createTime;
private LocalDateTime updateTime;
}