clock in and comment finished waitting for test

This commit is contained in:
Cauchy
2023-10-11 14:22:45 +08:00
parent 6a66bc7249
commit d80d598529
20 changed files with 311 additions and 164 deletions

View File

@@ -0,0 +1,31 @@
package com.peanut.modules.book.entity;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableLogic;
import lombok.Data;
import java.io.Serializable;
import java.util.Date;
@Data
public class BookClockInChatEntity implements Serializable {
private static final long serialVersionUID = 1L;
@TableId
private Integer id;
private Integer entryId;
private Integer userId;
//子对话开启的层数
private Integer fid;
//回复于某人id
private Integer pUserId;
private String content;
private Date createTime;
@TableLogic
private Integer delFlag;
}