admin
2020-12-07 3e7debeb2b7e5e77d19bac5edae1334c6c88839c
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
package com.ks.daylucky.pojo.VO;
 
import com.google.gson.annotations.Expose;
 
/**
 * 活动详情
 */
public class UserActivityUnRecievedAwardVO {
    @Expose
    private String title;
    @Expose
    private Long awardId;
    @Expose
    private String picture;
    @Expose
    private String awardName;
 
 
    public String getTitle() {
        return title;
    }
 
    public void setTitle(String title) {
        this.title = title;
    }
 
    public Long getAwardId() {
        return awardId;
    }
 
    public void setAwardId(Long awardId) {
        this.awardId = awardId;
    }
 
    public String getPicture() {
        return picture;
    }
 
    public void setPicture(String picture) {
        this.picture = picture;
    }
 
    public String getAwardName() {
        return awardName;
    }
 
    public void setAwardName(String awardName) {
        this.awardName = awardName;
    }
}