puzhibing
2022-08-22 1421f8e9c308c4741cb396309035009393b5b036
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
package com.stylefeng.guns.modular.system.warpper;
 
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
 
@ApiModel("广告")
public class AdvertisementWarpper {
    @ApiModelProperty("主键")
    private Integer id;
    @ApiModelProperty("名称")
    private String name;
    @ApiModelProperty("图片地址")
    private String imgUrl;
    @ApiModelProperty("类型(1:弹窗,2:底部)")
    private Integer type;
    @ApiModelProperty("是否跳转(1:是,2:否)")
    private Integer isJump;
    @ApiModelProperty("跳转类型(1:外部,2:内部)")
    private Integer jumpType;
    @ApiModelProperty("跳转路径")
    private String jumpUrl;
    @ApiModelProperty("内容")
    private String content;
 
    public Integer getId() {
        return id;
    }
 
    public void setId(Integer id) {
        this.id = id;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public String getImgUrl() {
        return imgUrl;
    }
 
    public void setImgUrl(String imgUrl) {
        this.imgUrl = imgUrl;
    }
 
    public Integer getType() {
        return type;
    }
 
    public void setType(Integer type) {
        this.type = type;
    }
 
    public Integer getIsJump() {
        return isJump;
    }
 
    public void setIsJump(Integer isJump) {
        this.isJump = isJump;
    }
 
    public Integer getJumpType() {
        return jumpType;
    }
 
    public void setJumpType(Integer jumpType) {
        this.jumpType = jumpType;
    }
 
    public String getJumpUrl() {
        return jumpUrl;
    }
 
    public void setJumpUrl(String jumpUrl) {
        this.jumpUrl = jumpUrl;
    }
 
    public String getContent() {
        return content;
    }
 
    public void setContent(String content) {
        this.content = content;
    }
 
    @Override
    public String toString() {
        return "AdvertisementWarpper{" +
                "id=" + id +
                ", name='" + name + '\'' +
                ", imgUrl='" + imgUrl + '\'' +
                ", type=" + type +
                ", isJump=" + isJump +
                ", jumpType=" + jumpType +
                ", jumpUrl='" + jumpUrl + '\'' +
                ", content='" + content + '\'' +
                '}';
    }
}