package com.yeshi.fanli.vo.msg;
|
|
import java.util.Map;
|
|
import com.yeshi.fanli.entity.bus.homemodule.Special;
|
|
public class UserMsgCenter {
|
private Special special;
|
private UserMsgVO userMsg;
|
private Map<String, Object> welcomeMsg;
|
|
public Special getSpecial() {
|
return special;
|
}
|
public void setSpecial(Special special) {
|
this.special = special;
|
}
|
public UserMsgVO getUserMsg() {
|
return userMsg;
|
}
|
public void setUserMsg(UserMsgVO userMsg) {
|
this.userMsg = userMsg;
|
}
|
public Map<String, Object> getWelcomeMsg() {
|
return welcomeMsg;
|
}
|
public void setWelcomeMsg(Map<String, Object> welcomeMsg) {
|
this.welcomeMsg = welcomeMsg;
|
}
|
|
|
}
|