|
@@ -0,0 +1,103 @@
|
|
|
+package com.flyer.foster.entity;
|
|
|
+
|
|
|
+import com.baomidou.mybatisplus.annotation.FieldFill;
|
|
|
+import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
+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 com.baomidou.mybatisplus.annotation.Version;
|
|
|
+import java.io.Serializable;
|
|
|
+import java.time.LocalDateTime;
|
|
|
+import lombok.Getter;
|
|
|
+import lombok.Setter;
|
|
|
+
|
|
|
+/**
|
|
|
+ * <p>
|
|
|
+ * 果树海报悄悄话
|
|
|
+ * </p>
|
|
|
+ *
|
|
|
+ * @author flyer
|
|
|
+ * @since 2024-05-09
|
|
|
+ */
|
|
|
+@Getter
|
|
|
+@Setter
|
|
|
+@TableName("tb_tree_poster_content")
|
|
|
+public class TreePosterContent implements Serializable {
|
|
|
+
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 主键
|
|
|
+ */
|
|
|
+ @TableId(value = "id", type = IdType.AUTO)
|
|
|
+ private Integer id;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 海报url
|
|
|
+ */
|
|
|
+ private String posterUrl;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 悄悄话内容
|
|
|
+ */
|
|
|
+ private String content;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 小程序用户id
|
|
|
+ */
|
|
|
+ private Integer appUserId;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 树id
|
|
|
+ */
|
|
|
+ private Integer treeId;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 状态-{0.不可用 1.可用}
|
|
|
+ */
|
|
|
+ private Integer status;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 租户号
|
|
|
+ */
|
|
|
+ private Integer tenantId;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 乐观锁
|
|
|
+ */
|
|
|
+ @Version
|
|
|
+ private Integer version;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 是否删除
|
|
|
+ */
|
|
|
+ @TableLogic
|
|
|
+ private Integer isDeleted;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 创建人
|
|
|
+ */
|
|
|
+ @TableField(fill = FieldFill.INSERT)
|
|
|
+ private String createdBy;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 创建时间
|
|
|
+ */
|
|
|
+ @TableField(fill = FieldFill.INSERT)
|
|
|
+ private LocalDateTime createdTime;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 更新人
|
|
|
+ */
|
|
|
+ @TableField(fill = FieldFill.UPDATE)
|
|
|
+ private String updatedBy;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 更新时间
|
|
|
+ */
|
|
|
+ @TableField(fill = FieldFill.UPDATE)
|
|
|
+ private LocalDateTime updatedTime;
|
|
|
+
|
|
|
+
|
|
|
+}
|