| | |
| | | package com.yeshi.fanli.vo.msg;
|
| | |
|
| | | import com.yeshi.fanli.entity.common.JumpDetailV2;
|
| | |
|
| | | public class UserSystemMsgVO {
|
| | | private Long id;
|
| | | private String portrait;
|
| | |
| | | private String timeTag;
|
| | | private String createTime;
|
| | | private int unReadCount;
|
| | | private JumpDetailV2 jumpDetail;// 跳转详情
|
| | |
|
| | | public UserSystemMsgVO(Long id, String type, Boolean solved, String title, String content, String timeTag,
|
| | | String portrait, String createTime, int unReadCount) {
|
| | |
| | | this.createTime = createTime;
|
| | | }
|
| | |
|
| | | public JumpDetailV2 getJumpDetail() {
|
| | | return jumpDetail;
|
| | | }
|
| | |
|
| | | public void setJumpDetail(JumpDetailV2 jumpDetail) {
|
| | | this.jumpDetail = jumpDetail;
|
| | | }
|
| | |
|
| | | }
|