admin
2020-12-17 d8d576c5220e9d24251b51a59a58271c6e0cb4a4
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
package com.ks.daylucky.pojo.VO;
 
public class ActivityAwardVO {
 
    /**
     * id : 123
     * typeIcon : 类型图标链接
     * title : 奖品名称
     * link : 详情链接
     */
 
    private Long id;
    private String typeIcon;
    private String title;
    private String link;
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public String getTypeIcon() {
        return typeIcon;
    }
 
    public void setTypeIcon(String typeIcon) {
        this.typeIcon = typeIcon;
    }
 
    public String getTitle() {
        return title;
    }
 
    public void setTitle(String title) {
        this.title = title;
    }
 
    public String getLink() {
        return link;
    }
 
    public void setLink(String link) {
        this.link = link;
    }
 
}