package com.ks.daylucky.pojo.VO;
|
|
import java.util.List;
|
|
public class UserMsgVO {
|
private String icon;
|
private String name;
|
private List<UserMsgContentVO> contentList;
|
private String time;
|
|
|
public String getIcon() {
|
return icon;
|
}
|
|
public void setIcon(String icon) {
|
this.icon = icon;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public List<UserMsgContentVO> getContentList() {
|
return contentList;
|
}
|
|
public void setContentList(List<UserMsgContentVO> contentList) {
|
this.contentList = contentList;
|
}
|
|
public String getTime() {
|
return time;
|
}
|
|
public void setTime(String time) {
|
this.time = time;
|
}
|
}
|