New file |
| | |
| | | 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; |
| | | } |