1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| package com.xcong.farmer.cms.modules.system.entity;
|
| import com.baomidou.mybatisplus.annotation.TableName;
| import lombok.Data;
|
| /**
| * 网页配置表
| */
| @Data
| @TableName("t_web_set")
| public class WebSetEntity {
| //ID
| private Long id;
| //网页标题
| private String webTitle;
| //网页关键字
| private String webKeyword;
| //网页描述
| private String webRemark;
| //网页LOGO
| private String webPic;
| }
|
|