userentity bug
This commit is contained in:
@@ -102,7 +102,7 @@ public class BookForumArticlesEntity {
|
||||
|
||||
//说话的人
|
||||
@TableField(exist = false)
|
||||
private UserEntity user;
|
||||
private MyUserEntity user;
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -70,11 +70,11 @@ public class BookForumCommentEntity {
|
||||
|
||||
//发言者
|
||||
@TableField(exist = false)
|
||||
private UserEntity user;
|
||||
private MyUserEntity user;
|
||||
|
||||
//对谁说
|
||||
@TableField(exist = false)
|
||||
private UserEntity puser;
|
||||
private MyUserEntity puser;
|
||||
|
||||
//子对话
|
||||
@TableField(exist = false)
|
||||
|
||||
@@ -1,65 +0,0 @@
|
||||
package com.peanut.modules.book.entity;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import lombok.Data;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.util.Date;
|
||||
|
||||
@Data
|
||||
@TableName("user")
|
||||
public class UserEntity {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@TableId
|
||||
@TableField("id")
|
||||
private Integer id;
|
||||
|
||||
private String name;
|
||||
|
||||
private Integer age;
|
||||
|
||||
private Integer sex;
|
||||
|
||||
private String avatar;
|
||||
|
||||
private String nickname;
|
||||
|
||||
private String tel;
|
||||
|
||||
private String password;
|
||||
|
||||
private String vip;
|
||||
|
||||
@TableField("vip_start_time")
|
||||
private Date vipStartTime;
|
||||
|
||||
@TableField("vip_validtime")
|
||||
private Date vipValidtime;
|
||||
|
||||
@TableField("peanut_coin")
|
||||
private BigDecimal peanutCoin;
|
||||
|
||||
@TableField("read_time")
|
||||
private Date readTime;
|
||||
|
||||
@TableField("last_login_time")
|
||||
private Date lastLoginTime;
|
||||
|
||||
@TableField("yljk_oid")
|
||||
private String yljkOid;
|
||||
|
||||
@TableField("create_time")
|
||||
private Date createTime;
|
||||
|
||||
@TableField("update_time")
|
||||
private Date updateTime;
|
||||
|
||||
@TableField("del_flag")
|
||||
private Integer delFlag;
|
||||
|
||||
private String remark;
|
||||
}
|
||||
Reference in New Issue
Block a user