admin
2019-05-06 8f45af9d6cdae97f4f265d2f2a123d990cf1bb1d
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
package com.yeshi.fanli.dto.msg;
 
import java.util.Date;
 
import com.yeshi.fanli.entity.common.JumpDetailV2;
 
/**
 * 常规消息对象
 * 
 * @author Administrator
 *
 */
public class MsgCommonDTO {
    private String contentMd5;// 内容的MD5值
    private String icon;
    private String title;
    private String content;// 内容
    private Boolean show;
    private Date startTime;// 开始时间
    private Date endTime;// 结束时间
    private JumpDetailV2 jumpDetail;// 跳转方式
    private String params;// 跳转参数
    private Date updateTime;
 
    public String getContentMd5() {
        return contentMd5;
    }
 
    public void setContentMd5(String contentMd5) {
        this.contentMd5 = contentMd5;
    }
 
    public String getIcon() {
        return icon;
    }
 
    public void setIcon(String icon) {
        this.icon = icon;
    }
 
    public String getTitle() {
        return title;
    }
 
    public void setTitle(String title) {
        this.title = title;
    }
 
    public String getContent() {
        return content;
    }
 
    public void setContent(String content) {
        this.content = content;
    }
 
    public Boolean getShow() {
        return show;
    }
 
    public void setShow(Boolean show) {
        this.show = show;
    }
 
    public Date getStartTime() {
        return startTime;
    }
 
    public void setStartTime(Date startTime) {
        this.startTime = startTime;
    }
 
    public Date getEndTime() {
        return endTime;
    }
 
    public void setEndTime(Date endTime) {
        this.endTime = endTime;
    }
 
    public JumpDetailV2 getJumpDetail() {
        return jumpDetail;
    }
 
    public void setJumpDetail(JumpDetailV2 jumpDetail) {
        this.jumpDetail = jumpDetail;
    }
 
    public String getParams() {
        return params;
    }
 
    public void setParams(String params) {
        this.params = params;
    }
 
    public Date getUpdateTime() {
        return updateTime;
    }
 
    public void setUpdateTime(Date updateTime) {
        this.updateTime = updateTime;
    }
}