Files
nuttyreading-java/src/main/java/com/peanut/modules/book/entity/BookClockEntryChatEntity.java
wangjinlei bb9be1748b bug xf
2023-10-17 15:45:28 +08:00

45 lines
1010 B
Java

package com.peanut.modules.book.entity;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableLogic;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
import java.io.Serializable;
import java.util.Date;
import java.util.List;
@Data
@TableName("book_clock_entry_chat")
public class BookClockEntryChatEntity implements Serializable {
private static final long serialVersionUID = 1L;
@TableId
private Integer id;
private Integer entryId;
private Integer userId;
//子对话开启的层数
private Integer fid;
//回复于某人id
@TableField("p_user_id")
private Integer puserId;
private String content;
@TableField("p_chat_id")
private Integer pchatId;
private Date createTime;
@TableLogic
private Integer delFlag;
@TableField(exist = false)
private List<String> imageList;
private String images;
}