[de] 引入方式修改为api +301001receiver

This commit is contained in:
liujing
2021-11-01 19:33:49 +08:00
parent d504ca1642
commit d30f1a9afd
9 changed files with 78 additions and 47 deletions

View File

@@ -3,6 +3,7 @@ package com.mogo.eagle.core.data.notice;
/**
* @author Jing
* @description 交警任务公告推送消息体
* 接口 http://wiki.zhidaohulian.com/pages/viewpage.action?pageId=66917469
* @since: 10/28/21
*/
public class NoticeTrafficStylePushData {
@@ -10,7 +11,7 @@ public class NoticeTrafficStylePushData {
private String infoId;
private String poiImgUrl;
private String title;
private String isVideo;
private boolean isVideo;
private String content;
public String getMsg() {
@@ -45,11 +46,11 @@ public class NoticeTrafficStylePushData {
this.poiImgUrl = poiImgUrl;
}
public String getIsVideo() {
public boolean getIsVideo() {
return isVideo;
}
public void setIsVideo(String isVideo) {
public void setIsVideo(boolean isVideo) {
this.isVideo = isVideo;
}
@@ -63,11 +64,12 @@ public class NoticeTrafficStylePushData {
@Override
public String toString() {
return "NoticePushData{" +
return "NoticeTrafficStylePushData{" +
"msg='" + msg + '\'' +
", infoId='" + infoId + '\'' +
", imageUrl='" + poiImgUrl + '\'' +
", isVideo='" + isVideo + '\'' +
", poiImgUrl='" + poiImgUrl + '\'' +
", title='" + title + '\'' +
", isVideo=" + isVideo +
", content='" + content + '\'' +
'}';
}