From 19befbb8b6ba0f12f7fec0e597edd0f9bce3ec0f Mon Sep 17 00:00:00 2001 From: xiaoyong931011 <15274802129@163.com> Date: Tue, 12 Jul 2022 11:39:35 +0800 Subject: [PATCH] Merge branch 'master' of http://120.27.238.55:7000/r/farmer-cms --- src/main/java/com/xcong/farmer/cms/modules/system/entity/WebSettingEntity.java | 67 +++++++++++++++++++++++++++++++++ 1 files changed, 67 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/xcong/farmer/cms/modules/system/entity/WebSettingEntity.java b/src/main/java/com/xcong/farmer/cms/modules/system/entity/WebSettingEntity.java new file mode 100644 index 0000000..631923e --- /dev/null +++ b/src/main/java/com/xcong/farmer/cms/modules/system/entity/WebSettingEntity.java @@ -0,0 +1,67 @@ +package com.xcong.farmer.cms.modules.system.entity; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableField; +import com.baomidou.mybatisplus.annotation.TableId; +import com.baomidou.mybatisplus.annotation.TableName; +import lombok.Data; + +/** + * 网页配置表 + */ +@Data +@TableName("t_web_setting") +public class WebSettingEntity { + //ID + + @TableId(value = "id",type = IdType.AUTO) + private Long id; + + /** + * 网站标题 + */ + private String title; + + /** + * seo标题 + */ + private String seoTitle; + + /** + * seo关键词 + */ + private String seoKeyword; + + /** + * seo描述 + */ + private String seoDescription; + + /** + * logo地址 + */ + private String logoUrl; + + /** + * 首页模板 + */ + private String indexTemplate; + + /** + * 搜索模板 + */ + private String searchTemplate; + + /** + * 在线留言模板 + */ + private String msgTemplate; + + private Long companyId; + + @TableField(exist = false) + private String companyCode; + + @TableField(exist = false) + private String companyUrl; +} -- Gitblit v1.9.1