package com.yeshi.fanli.vo.msg;
|
|
import java.util.Date;
|
import java.util.List;
|
|
public class UserMsgVO {
|
private String icon;
|
private String title;
|
private Date time;
|
private List<CommonMsgItemVO> contentItems;
|
|
public UserMsgVO(String icon, String title, Date time, List<CommonMsgItemVO> contentItems) {
|
this.icon = icon;
|
this.title = title;
|
this.time = time;
|
this.contentItems = contentItems;
|
}
|
|
public UserMsgVO() {
|
}
|
|
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 Date getTime() {
|
return time;
|
}
|
|
public void setTime(Date time) {
|
this.time = time;
|
}
|
|
public List<CommonMsgItemVO> getContentItems() {
|
return contentItems;
|
}
|
|
public void setContentItems(List<CommonMsgItemVO> contentItems) {
|
this.contentItems = contentItems;
|
}
|
}
|