| | |
| | | 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; |
| | |
| | | @EqualsAndHashCode(callSuper = true) |
| | | @Accessors(chain = true) |
| | | @TableName("t_flower_comment") |
| | | public class FlowerCommentDO extends BaseEntity { |
| | | public class FlowerCommentDO extends BaseEntityLogic { |
| | | |
| | | |
| | | /** |
| | |
| | | */ |
| | | private Integer anonymityFalg; |
| | | |
| | | /** |
| | | * 显示标志 0-显示 1-隐藏 |
| | | */ |
| | | private Integer showFlag; |
| | | |
| | | |
| | | /** |
| | | * 回复内容 |
| | | */ |
| | | private String replayContent; |
| | | |
| | | /** |
| | | * 回复人 |
| | | */ |
| | | private String replayBy; |
| | | |
| | | |
| | | /** |
| | | * 回复时间 |
| | | */ |
| | | private LocalDateTime replayTime; |
| | | |
| | | |
| | | |
| | | } |