陶杰
2025-01-08 ae1471f378f399f76518539ec8992e64a3673436
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;
}