From 23f7b250c00597ad89282075460a4c27dffe1ada Mon Sep 17 00:00:00 2001 From: admin <weikou2014> Date: 星期六, 19 一月 2019 17:39:06 +0800 Subject: [PATCH] Merge branch 'dev-msg' --- fanli/src/main/java/com/yeshi/fanli/vo/msg/UserHomeMsgVO.java | 67 +++++++++++++++++++++++++++++++++ 1 files changed, 67 insertions(+), 0 deletions(-) diff --git a/fanli/src/main/java/com/yeshi/fanli/vo/msg/UserHomeMsgVO.java b/fanli/src/main/java/com/yeshi/fanli/vo/msg/UserHomeMsgVO.java new file mode 100644 index 0000000..0e86814 --- /dev/null +++ b/fanli/src/main/java/com/yeshi/fanli/vo/msg/UserHomeMsgVO.java @@ -0,0 +1,67 @@ +package com.yeshi.fanli.vo.msg; + +import java.util.List; + +import com.yeshi.fanli.entity.taobao.TaoBaoGoodsBrief; + +public class UserHomeMsgVO { + public final static String TYPE_WELCOME = "welcome"; + public final static String TYPE_GOODS_1 = "goods_1"; + public final static String TYPE_GOODS_2 = "goods_2"; + public final static String TYPE_GOODS_3 = "goods_3"; + + private String icon; + private String type; + private String title; + private String content; + private String createTime; + private List<TaoBaoGoodsBrief> goodsList; + + public String getType() { + return type; + } + + public void setType(String type) { + this.type = type; + } + + 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 getCreateTime() { + return createTime; + } + + public void setCreateTime(String createTime) { + this.createTime = createTime; + } + + public List<TaoBaoGoodsBrief> getGoodsList() { + return goodsList; + } + + public void setGoodsList(List<TaoBaoGoodsBrief> goodsList) { + this.goodsList = goodsList; + } + + public String getIcon() { + return icon; + } + + public void setIcon(String icon) { + this.icon = icon; + } +} -- Gitblit v1.8.0