admin
2021-05-22 3595485efbfeb0db8c0e719e34aac022af284754
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
104
105
106
package com.tejia.lijin.app.entity;
 
import com.google.gson.annotations.Expose;
 
import java.io.Serializable;
import java.util.List;
import java.util.Map;
 
public class PushRecord implements Serializable {
 
    @Expose
    private String content;
    @Expose
    private long pushtime;
    @Expose
    private String picture;
    @Expose
    private List<PushKeyWords> totalwords;
    @Expose
    private Map<String, String> params;
    @Expose
    private JumpDetail jumpDetail;
    @Expose
    private String nickName;
    @Expose
    private String scanNum;
 
 
    @Expose
    private String title;
 
    public String getTitle() {
        return title;
    }
 
    public void setTitle(String title) {
        this.title = title;
    }
 
 
 
 
    public String getNickName() {
        return nickName;
    }
 
    public void setNickName(String nickName) {
        this.nickName = nickName;
    }
 
    public String getScanNum() {
        return scanNum;
    }
 
    public void setScanNum(String scanNum) {
        this.scanNum = scanNum;
    }
 
    public String getContent() {
        return content;
    }
 
    public void setContent(String content) {
        this.content = content;
    }
 
    public long getPushtime() {
        return pushtime;
    }
 
    public void setPushtime(long pushtime) {
        this.pushtime = pushtime;
    }
 
    public String getPicture() {
        return picture;
    }
 
    public void setPicture(String picture) {
        this.picture = picture;
    }
 
    public List<PushKeyWords> getTotalwords() {
        return totalwords;
    }
 
    public void setTotalwords(List<PushKeyWords> totalwords) {
        this.totalwords = totalwords;
    }
 
    public Map<String, String> getParams() {
        return params;
    }
 
    public void setParams(Map<String, String> params) {
        this.params = params;
    }
 
    public JumpDetail getJumpDetail() {
        return jumpDetail;
    }
 
    public void setJumpDetail(JumpDetail jumpDetail) {
        this.jumpDetail = jumpDetail;
    }
}