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/UserCommonMsgVO.java | 23 ++++++++++++++++++++++- 1 files changed, 22 insertions(+), 1 deletions(-) diff --git a/fanli/src/main/java/com/yeshi/fanli/vo/msg/UserCommonMsgVO.java b/fanli/src/main/java/com/yeshi/fanli/vo/msg/UserCommonMsgVO.java index 3f8dfd2..27a1c94 100644 --- a/fanli/src/main/java/com/yeshi/fanli/vo/msg/UserCommonMsgVO.java +++ b/fanli/src/main/java/com/yeshi/fanli/vo/msg/UserCommonMsgVO.java @@ -9,6 +9,8 @@ public static String TYPE_GUANXUAN = "guanxuan"; public static String TYPE_ZHUSHOU = "zhushou"; public static String TYPE_RECOMMEND = "recommend"; + public static String TYPE_SYSTEM = "system";// 绯荤粺娑堟伅 + public static String TYPE_NOTIFY = "notify";// 閫氱煡娑堟伅 private String icon; private String title; @@ -18,9 +20,11 @@ private Boolean read;// 鏄惁宸茶 private JumpDetailV2 jumpDetail;// 璺宠浆璇︽儏 private String params;// 璺宠浆鍙傛暟 + private Integer unReadCount;// 娑堟伅鏈鏁� + private String picture;// 澶у浘 public UserCommonMsgVO(String icon, String title, Date time, String type, String latestMsg, Boolean read, - JumpDetailV2 jumpDetail, String params) { + JumpDetailV2 jumpDetail, String params, Integer unReadCount) { this.icon = icon; this.title = title; this.time = time; @@ -29,6 +33,23 @@ this.read = read; this.jumpDetail = jumpDetail; this.params = params; + this.unReadCount = unReadCount; + } + + public String getPicture() { + return picture; + } + + public void setPicture(String picture) { + this.picture = picture; + } + + public Integer getUnReadCount() { + return unReadCount; + } + + public void setUnReadCount(Integer unReadCount) { + this.unReadCount = unReadCount; } public UserCommonMsgVO() { -- Gitblit v1.8.0