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/UserSystemMsgVO.java | 209 ++++++++++++++++++++++++++++----------------------- 1 files changed, 115 insertions(+), 94 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..f1bee27 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,94 +1,115 @@ -package com.yeshi.fanli.vo.msg; - -public class UserSystemMsgVO { - private Long id; - private String portrait; - - private String type; - private Boolean solved; - private String title; - private String content; - private String timeTag; - private String createTime; - - public UserSystemMsgVO(Long id, String type, Boolean solved, String title, String content, String timeTag, - String portrait, String createTime) { - this.id = id; - this.type = type; - this.solved = solved; - this.title = title; - this.content = content; - this.timeTag = timeTag; - this.portrait = portrait; - this.createTime = createTime; - } - - public UserSystemMsgVO() { - - } - - public Long getId() { - return id; - } - - public void setId(Long id) { - this.id = id; - } - - public String getPortrait() { - return portrait; - } - - public void setPortrait(String portrait) { - this.portrait = portrait; - } - - public String getType() { - return type; - } - - public void setType(String type) { - this.type = type; - } - - public Boolean getSolved() { - return solved; - } - - public void setSolved(Boolean solved) { - this.solved = solved; - } - - public String getTitle() { - return title; - } - - public void setTitle(String title) { - this.title = title; - } - - public String getContent() { - return content; - } - - public void setContent(String content) { - this.content = content; - } - - public String getTimeTag() { - return timeTag; - } - - public void setTimeTag(String timeTag) { - this.timeTag = timeTag; - } - - public String getCreateTime() { - return createTime; - } - - public void setCreateTime(String createTime) { - this.createTime = createTime; - } - -} +package com.yeshi.fanli.vo.msg; + +import com.yeshi.fanli.entity.common.JumpDetailV2; + +public class UserSystemMsgVO { + private Long id; + private String portrait; + + private String type; + private Boolean solved; + private String title; + 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, int unReadCount) { + this.id = id; + this.type = type; + this.solved = solved; + this.title = title; + this.content = content; + this.timeTag = timeTag; + this.portrait = portrait; + this.createTime = createTime; + this.unReadCount = unReadCount; + } + + public UserSystemMsgVO() { + + } + + public Long getId() { + return id; + } + + public void setId(Long id) { + this.id = id; + } + + public int getUnReadCount() { + return unReadCount; + } + + public void setUnReadCount(int unReadCount) { + this.unReadCount = unReadCount; + } + + public String getPortrait() { + return portrait; + } + + public void setPortrait(String portrait) { + this.portrait = portrait; + } + + public String getType() { + return type; + } + + public void setType(String type) { + this.type = type; + } + + public Boolean getSolved() { + return solved; + } + + public void setSolved(Boolean solved) { + this.solved = solved; + } + + public String getTitle() { + return title; + } + + public void setTitle(String title) { + this.title = title; + } + + public String getContent() { + return content; + } + + public void setContent(String content) { + this.content = content; + } + + public String getTimeTag() { + return timeTag; + } + + public void setTimeTag(String timeTag) { + this.timeTag = timeTag; + } + + public String getCreateTime() { + return createTime; + } + + public void setCreateTime(String createTime) { + this.createTime = createTime; + } + + public JumpDetailV2 getJumpDetail() { + return jumpDetail; + } + + public void setJumpDetail(JumpDetailV2 jumpDetail) { + this.jumpDetail = jumpDetail; + } + +} -- Gitblit v1.8.0