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;
|
}
|
}
|