|
@@ -0,0 +1,76 @@
|
|
|
+package cn.gygxzc.envir.entity;
|
|
|
+
|
|
|
+import java.util.ArrayList;
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
+/**
|
|
|
+ * Created by niantuo on 2018/12/17.
|
|
|
+ * 消息推送的模型
|
|
|
+ */
|
|
|
+
|
|
|
+public class PushModel {
|
|
|
+
|
|
|
+ private String content;
|
|
|
+ private String type;
|
|
|
+ private String contentType;
|
|
|
+ private String urls;
|
|
|
+ private String title;
|
|
|
+ private String remark;
|
|
|
+ private List<Long> toUserIds = new ArrayList<>();
|
|
|
+
|
|
|
+ public String getContent() {
|
|
|
+ return content;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setContent(String content) {
|
|
|
+ this.content = content;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getType() {
|
|
|
+ return type;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setType(String type) {
|
|
|
+ this.type = type;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getContentType() {
|
|
|
+ return contentType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setContentType(String contentType) {
|
|
|
+ this.contentType = contentType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getUrls() {
|
|
|
+ return urls;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUrls(String urls) {
|
|
|
+ this.urls = urls;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getTitle() {
|
|
|
+ return title;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTitle(String title) {
|
|
|
+ this.title = title;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getRemark() {
|
|
|
+ return remark;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRemark(String remark) {
|
|
|
+ this.remark = remark;
|
|
|
+ }
|
|
|
+
|
|
|
+ public List<Long> getToUserIds() {
|
|
|
+ return toUserIds;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setToUserIds(List<Long> toUserIds) {
|
|
|
+ this.toUserIds = toUserIds;
|
|
|
+ }
|
|
|
+}
|