陶杰
2024-10-10 9e530fa2aee385cb331e3c76d0765e78c40e35f7
src/main/java/com/mzl/flower/entity/FlowerCommentDO.java
@@ -1,8 +1,9 @@
package com.mzl.flower.entity;
import com.baomidou.mybatisplus.annotation.TableName;
import com.mzl.flower.base.BaseEntity;
import java.sql.Blob;
import java.time.LocalDateTime;
import com.mzl.flower.base.BaseEntityLogic;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
@@ -17,7 +18,7 @@
@EqualsAndHashCode(callSuper = true)
@Accessors(chain = true)
@TableName("t_flower_comment")
public class FlowerCommentDO extends BaseEntity {
public class FlowerCommentDO extends BaseEntityLogic {
    /**
@@ -80,5 +81,28 @@
     */
    private Integer anonymityFalg;
    /**
     * 显示标志 0-显示 1-隐藏
     */
    private Integer showFlag;
    /**
     * 回复内容
     */
    private String replayContent;
    /**
     * 回复人
     */
    private String replayBy;
    /**
     * 回复时间
     */
    private LocalDateTime replayTime;
}