[add] 1.添加push推送数据体bean 2.添加caller调hmi UI调起流程相关java类文件
This commit is contained in:
@@ -0,0 +1,65 @@
|
||||
package com.mogo.eagle.core.data.notice;
|
||||
|
||||
/**
|
||||
* @author Jing
|
||||
* @description 交警任务公告推送消息体
|
||||
* @since: 10/28/21
|
||||
*/
|
||||
public class NoticePushData {
|
||||
private String msg;
|
||||
private String infoId;
|
||||
private String imageUrl;
|
||||
private String isVideo;
|
||||
private String content;
|
||||
|
||||
public String getMsg() {
|
||||
return msg;
|
||||
}
|
||||
|
||||
public void setMsg(String msg) {
|
||||
this.msg = msg;
|
||||
}
|
||||
|
||||
public String getInfoId() {
|
||||
return infoId;
|
||||
}
|
||||
|
||||
public void setInfoId(String infoId) {
|
||||
this.infoId = infoId;
|
||||
}
|
||||
|
||||
public String getImageUrl() {
|
||||
return imageUrl;
|
||||
}
|
||||
|
||||
public void setImageUrl(String imageUrl) {
|
||||
this.imageUrl = imageUrl;
|
||||
}
|
||||
|
||||
public String getIsVideo() {
|
||||
return isVideo;
|
||||
}
|
||||
|
||||
public void setIsVideo(String isVideo) {
|
||||
this.isVideo = isVideo;
|
||||
}
|
||||
|
||||
public String getContent() {
|
||||
return content;
|
||||
}
|
||||
|
||||
public void setContent(String content) {
|
||||
this.content = content;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "NoticePushData{" +
|
||||
"msg='" + msg + '\'' +
|
||||
", infoId='" + infoId + '\'' +
|
||||
", imageUrl='" + imageUrl + '\'' +
|
||||
", isVideo='" + isVideo + '\'' +
|
||||
", content='" + content + '\'' +
|
||||
'}';
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user