From dc5be7d38446f70e6ff86df311119c32b41fe7f8 Mon Sep 17 00:00:00 2001 From: admin <weikou2014> Date: 星期六, 28 十一月 2020 16:37:05 +0800 Subject: [PATCH] 大淘客搜索接口升级 --- fanli/src/main/java/com/yeshi/fanli/vo/msg/CommonMsgItemVO.java | 19 ++++++++++++++++++- 1 files changed, 18 insertions(+), 1 deletions(-) diff --git a/fanli/src/main/java/com/yeshi/fanli/vo/msg/CommonMsgItemVO.java b/fanli/src/main/java/com/yeshi/fanli/vo/msg/CommonMsgItemVO.java index 4a8f85f..c3f707e 100644 --- a/fanli/src/main/java/com/yeshi/fanli/vo/msg/CommonMsgItemVO.java +++ b/fanli/src/main/java/com/yeshi/fanli/vo/msg/CommonMsgItemVO.java @@ -1,16 +1,33 @@ package com.yeshi.fanli.vo.msg; +import com.yeshi.common.vo.ClientTextStyleVO; + import java.util.List; public class CommonMsgItemVO { private ClientTextStyleVO title; private List<ClientTextStyleVO> content; + private boolean click; + + public boolean isClick() { + return click; + } + + public void setClick(boolean click) { + this.click = click; + } public CommonMsgItemVO(ClientTextStyleVO title, List<ClientTextStyleVO> content) { this.title = title; this.content = content; } - + + public CommonMsgItemVO(ClientTextStyleVO title, List<ClientTextStyleVO> content, boolean click) { + this.title = title; + this.content = content; + this.click = click; + } + public CommonMsgItemVO() { } -- Gitblit v1.8.0