1
zyy
13 hours ago 9bb3ab4a3fb0b1d20dcc87979a19ca9625a4bfc8
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
package com.yami.trading.bean.cms;
 
import com.baomidou.mybatisplus.annotation.FieldFill;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import com.yami.trading.common.domain.UUIDEntity;
import lombok.Data;
 
import java.util.Date;
 
 
@Data
@TableName("t_banner")
public class Banner extends UUIDEntity {
 
    private static final long serialVersionUID = 8252272898082376329L;
 
    /**
     * 语言
     */
    private String language;
    /**
     * 语言
     */
    @TableField(exist = false)
    private String languageText;
 
    /**
     * 业务代码, 同种内容 不同语言下的code相同
     */
    private String contentCode;
    /**
     * 展示图片
     */
    private String image;
 
    @TableField(exist = false)
    private String httpImageUrl;
 
    /**
     * 访问路径
     */
    private String url;
 
    /**
     * 是否展示
     */
    private int onShow;
 
    /**
     * 排列顺序(数字相同按时间排,越小排越前)
     */
    private int sortIndex;
 
    /**
     * 类型,top:顶部展示,other:其他地方展示,poster:弹窗海报
     */
    private String model;
 
    /**
     * 是否可以点击跳转
     */
    private int click;
 
    @TableField(fill = FieldFill.INSERT)
    private Date createTime;
 
}