From 59b262966f00605a39a0de1e03ce79e5e0f425d9 Mon Sep 17 00:00:00 2001 From: admin <weikou2014> Date: 星期六, 12 十月 2019 10:47:30 +0800 Subject: [PATCH] 饿了么到账消息设置,分享爆款商品列表不再需要登录 --- fanli/src/main/java/com/yeshi/fanli/vo/msg/CommonMsgItemVO.java | 17 ++++++++++++++++- 1 files changed, 16 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..8c34800 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 @@ -5,12 +5,27 @@ 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