| | |
| | | import java.util.Date;
|
| | | import java.util.List;
|
| | |
|
| | | import com.yeshi.fanli.entity.common.JumpDetailV2;
|
| | |
|
| | | public class UserMsgVO {
|
| | | private String icon;
|
| | | private String title;
|
| | | private Date time;
|
| | | private String type; // order(订单)/money(资金)/account(账号)/invite(邀请)/other(其他)
|
| | | private List<CommonMsgItemVO> contentItems;
|
| | | private JumpDetailV2 jumpDetail;// 跳转详情
|
| | | private String params;// 跳转参数
|
| | | private Long id;
|
| | |
|
| | | public UserMsgVO(String icon, String title, Date time, List<CommonMsgItemVO> contentItems) {
|
| | | 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 UserMsgVO(Long id, String icon, String title, Date time, List<CommonMsgItemVO> contentItems) {
|
| | | this.id = id;
|
| | | this.icon = icon;
|
| | | this.title = title;
|
| | | this.time = time;
|
| | |
| | | public void setType(String type) {
|
| | | this.type = type;
|
| | | }
|
| | |
|
| | | public Long getId() {
|
| | | return id;
|
| | | }
|
| | |
|
| | | public void setId(Long id) {
|
| | | this.id = id;
|
| | | }
|
| | | }
|