From 30d8e227e8d823b6c38c3b9c90ac2df03b63befe Mon Sep 17 00:00:00 2001 From: admin <weikou2014> Date: 星期二, 25 二月 2025 16:41:22 +0800 Subject: [PATCH] 淘宝转链接口更新 --- fanli/src/main/java/com/yeshi/fanli/vo/msg/UserCommonMsgVO.java | 225 ++++++++++++++++++++++++++++++------------------------- 1 files changed, 123 insertions(+), 102 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..857361a 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 @@ -1,102 +1,123 @@ -package com.yeshi.fanli.vo.msg; - -import java.util.Date; - -import com.yeshi.fanli.entity.common.JumpDetailV2; - -public class UserCommonMsgVO { - public static String TYPE_KEFU = "kefu"; - public static String TYPE_GUANXUAN = "guanxuan"; - public static String TYPE_ZHUSHOU = "zhushou"; - public static String TYPE_RECOMMEND = "recommend"; - - private String icon; - private String title; - private Date time; - private String type; // kefu -瀹㈡湇娑堟伅 other-鍏朵粬娑堟伅 - private String latestMsg;// 鏈�杩戠殑娑堟伅 - private Boolean read;// 鏄惁宸茶 - private JumpDetailV2 jumpDetail;// 璺宠浆璇︽儏 - private String params;// 璺宠浆鍙傛暟 - - public UserCommonMsgVO(String icon, String title, Date time, String type, String latestMsg, Boolean read, - JumpDetailV2 jumpDetail, String params) { - this.icon = icon; - this.title = title; - this.time = time; - this.type = type; - this.latestMsg = latestMsg; - this.read = read; - this.jumpDetail = jumpDetail; - this.params = params; - } - - public UserCommonMsgVO() { - - } - - public String getIcon() { - return icon; - } - - public void setIcon(String icon) { - this.icon = icon; - } - - public String getTitle() { - return title; - } - - public void setTitle(String title) { - this.title = title; - } - - public Date getTime() { - return time; - } - - public void setTime(Date time) { - this.time = time; - } - - public String getType() { - return type; - } - - public void setType(String type) { - this.type = type; - } - - public String getLatestMsg() { - return latestMsg; - } - - public void setLatestMsg(String latestMsg) { - this.latestMsg = latestMsg; - } - - public Boolean getRead() { - return read; - } - - public void setRead(Boolean read) { - this.read = read; - } - - 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; - } - -} +package com.yeshi.fanli.vo.msg; + +import java.util.Date; + +import com.yeshi.fanli.entity.common.JumpDetailV2; + +public class UserCommonMsgVO { + public static String TYPE_KEFU = "kefu"; + 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; + private Date time; + private String type; // kefu -瀹㈡湇娑堟伅 other-鍏朵粬娑堟伅 + private String latestMsg;// 鏈�杩戠殑娑堟伅 + 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, Integer unReadCount) { + this.icon = icon; + this.title = title; + this.time = time; + this.type = type; + this.latestMsg = latestMsg; + 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() { + + } + + public String getIcon() { + return icon; + } + + public void setIcon(String icon) { + this.icon = icon; + } + + public String getTitle() { + return title; + } + + public void setTitle(String title) { + this.title = title; + } + + public Date getTime() { + return time; + } + + public void setTime(Date time) { + this.time = time; + } + + public String getType() { + return type; + } + + public void setType(String type) { + this.type = type; + } + + public String getLatestMsg() { + return latestMsg; + } + + public void setLatestMsg(String latestMsg) { + this.latestMsg = latestMsg; + } + + public Boolean getRead() { + return read; + } + + public void setRead(Boolean read) { + this.read = read; + } + + 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; + } + +} -- Gitblit v1.8.0