| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
 | | package com.xcong.excoin.modules.systemSetting.entity;  |  |   |  | import com.baomidou.mybatisplus.annotation.TableName;  |  | import com.xcong.excoin.common.entity.BaseEntity;  |  |   |  | import lombok.Data;  |  |   |  | @Data  |  | @TableName("platform_banner")  |  | public class PlatformBannerEntity extends BaseEntity{  |  |   |  |     /**  |  |      *   |  |      */  |  |     private static final long serialVersionUID = 1L;  |  |     /**  |  |      * 标题  |  |      */  |  |     private String name;  |  |     /**  |  |      * 图片链接  |  |      */  |  |     private String imageUrl;  |  |     /**  |  |      * 是否可跳转 1-是2-否  |  |      */  |  |     private String isJump;  |  |     /**  |  |      * 跳转外部或内部 1-内2-外  |  |      */  |  |     private int isInside;  |  |     /**  |  |      * 跳转链接  |  |      */  |  |     private String jumpUrl;  |  |     /**  |  |      * 显示端口 1-pc2-手机  |  |      */  |  |     private int showPort;  |  |     /**  |  |      * 联系方式  |  |      */  |  |     private String sort;  |  |     /**  |  |      * 是否置顶 1-是2-否  |  |      */  |  |     private String isTop;  |  | }  | 
 |