From 2b6c540c6b20e04f8b2a05e6f0c22ba5d5016364 Mon Sep 17 00:00:00 2001
From: manailin <261030956@qq.com>
Date: 星期六, 24 九月 2022 14:09:50 +0800
Subject: [PATCH] Merge branch 'huacheng_test' of http://gitlab.nhys.cdnhxx.com/root/zhihuishequ into huacheng_test

---
 flower_city/src/main/java/com/dg/core/db/gen/entity/Slideshow.java |   72 ++++++++++++++++++++++++++++++++++++
 1 files changed, 72 insertions(+), 0 deletions(-)

diff --git a/flower_city/src/main/java/com/dg/core/db/gen/entity/Slideshow.java b/flower_city/src/main/java/com/dg/core/db/gen/entity/Slideshow.java
new file mode 100644
index 0000000..bd3382e
--- /dev/null
+++ b/flower_city/src/main/java/com/dg/core/db/gen/entity/Slideshow.java
@@ -0,0 +1,72 @@
+package com.dg.core.db.gen.entity;
+
+import com.baomidou.mybatisplus.annotation.IdType;
+import com.baomidou.mybatisplus.annotation.TableId;
+import com.baomidou.mybatisplus.annotation.TableName;
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+import lombok.Data;
+
+import java.io.Serializable;
+import java.time.LocalDateTime;
+
+/**
+ * <p>
+ * 轮播图
+ * </p>
+ *
+ * @author fengjin
+ * @since 2022-09-19
+ */
+@ApiModel("轮播图实体类")
+@Data
+@TableName("automessage_slideshow")
+public class Slideshow implements Serializable {
+
+    private static final long serialVersionUID = 1L;
+
+    /**
+     * 主键id
+     */
+    @ApiModelProperty("主键id")
+    @TableId(value = "id", type = IdType.AUTO)
+    private Integer id;
+
+    /**
+     * 图片地址
+     */
+    @ApiModelProperty("图片地址")
+    private String url;
+
+    /**
+     * 创建时间
+     */
+    @ApiModelProperty("创建时间")
+    private LocalDateTime createTime;
+
+    /**
+     * 链接类型(1.暂不设置2.富文本3.微信文章)
+     */
+    @ApiModelProperty("链接类型(1.暂不设置2.富文本3.微信文章)")
+    private Integer linkType;
+
+    /**
+     * 文章链接
+     */
+    @ApiModelProperty("文章链接")
+    private String link;
+
+    /**
+     * 文章标题
+     */
+    @ApiModelProperty("文章标题")
+    private String title;
+
+    /**
+     * 文章内容
+     */
+    @ApiModelProperty("文章内容")
+    private String content;
+
+
+}

--
Gitblit v1.7.1