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/UserSystemMsgVO.java |  104 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 104 insertions(+), 0 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
new file mode 100644
index 0000000..e97f078
--- /dev/null
+++ b/fanli/src/main/java/com/yeshi/fanli/vo/msg/UserSystemMsgVO.java
@@ -0,0 +1,104 @@
+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;
+	private int unReadCount;
+
+	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;
+	}
+
+}

--
Gitblit v1.8.0