From f4a0f2acc63d7785eab108419a4e16f5f688cb95 Mon Sep 17 00:00:00 2001 From: yujian <yujian@163.com> Date: 星期六, 18 一月 2020 12:06:27 +0800 Subject: [PATCH] 用户注册信息 --- fanli/src/main/java/com/yeshi/fanli/vo/msg/UserSystemMsgVO.java | 23 ++++++++++++++++++++++- 1 files changed, 22 insertions(+), 1 deletions(-) diff --git a/fanli/src/main/java/com/yeshi/fanli/vo/msg/UserSystemMsgVO.java b/fanli/src/main/java/com/yeshi/fanli/vo/msg/UserSystemMsgVO.java index 241baa0..d34c30d 100644 --- a/fanli/src/main/java/com/yeshi/fanli/vo/msg/UserSystemMsgVO.java +++ b/fanli/src/main/java/com/yeshi/fanli/vo/msg/UserSystemMsgVO.java @@ -1,5 +1,7 @@ package com.yeshi.fanli.vo.msg; +import com.yeshi.fanli.entity.common.JumpDetailV2; + public class UserSystemMsgVO { private Long id; private String portrait; @@ -10,9 +12,11 @@ private String content; 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) { + String portrait, String createTime, int unReadCount) { this.id = id; this.type = type; this.solved = solved; @@ -21,6 +25,7 @@ this.timeTag = timeTag; this.portrait = portrait; this.createTime = createTime; + this.unReadCount = unReadCount; } public UserSystemMsgVO() { @@ -33,6 +38,14 @@ public void setId(Long id) { this.id = id; + } + + public int getUnReadCount() { + return unReadCount; + } + + public void setUnReadCount(int unReadCount) { + this.unReadCount = unReadCount; } public String getPortrait() { @@ -91,4 +104,12 @@ this.createTime = createTime; } + public JumpDetailV2 getJumpDetail() { + return jumpDetail; + } + + public void setJumpDetail(JumpDetailV2 jumpDetail) { + this.jumpDetail = jumpDetail; + } + } -- Gitblit v1.8.0