Commit 49f1e40e by weijiguang

push

parent 65c71962
package com.soss.system.domain.vo;
import com.alibaba.fastjson.JSONObject;
import java.util.Map;
public class PushBean {
// 必填, 通知内容, 内容可以为空字符串,则表示不展示到通知栏。
private String alert;
// 可选, 附加信息, 供业务使用。
private Map<String, String> extras;
//android专用// 可选, 通知标题,如果指定了,则通知里原来展示 App名称的地方,将展示成这个字段。
private String title;
public JSONObject getMessageCount() {
return messageCount;
}
public void setMessageCount(JSONObject messageCount) {
this.messageCount = messageCount;
}
private JSONObject messageCount;
public String getAlert() {
return alert;
}
public void setAlert(String alert) {
this.alert = alert;
}
public Map<String, String> getExtras() {
return extras;
}
public void setExtras(Map<String, String> extras) {
this.extras = extras;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
}
\ No newline at end of file
//package com.soss.system.domain.vo;
//
//
//import com.alibaba.fastjson.JSONObject;
//
//import java.util.Map;
//
//public class PushBean {
// // 必填, 通知内容, 内容可以为空字符串,则表示不展示到通知栏。
// private String alert;
// // 可选, 附加信息, 供业务使用。
// private Map<String, String> extras;
// //android专用// 可选, 通知标题,如果指定了,则通知里原来展示 App名称的地方,将展示成这个字段。
// private String title;
//
// public JSONObject getMessageCount() {
// return messageCount;
// }
//
// public void setMessageCount(JSONObject messageCount) {
// this.messageCount = messageCount;
// }
//
// private JSONObject messageCount;
//
//
// public String getAlert() {
// return alert;
// }
//
// public void setAlert(String alert) {
// this.alert = alert;
// }
//
// public Map<String, String> getExtras() {
// return extras;
// }
//
// public void setExtras(Map<String, String> extras) {
// this.extras = extras;
// }
//
// public String getTitle() {
// return title;
// }
//
// public void setTitle(String title) {
// this.title = title;
// }
//}
\ No newline at end of file
package com.soss.system.push.impl;
import com.alibaba.fastjson.JSONObject;
import com.soss.system.push.PushService;
import com.soss.system.service.impl.MachineApiServiceImpl;
import lombok.extern.slf4j.Slf4j;
......@@ -48,11 +47,11 @@ public class PushServiceImpl implements PushService {
@Override
public boolean sendPush(String machineCode, Integer screenNo, String message) {
JSONObject requestBody = new JSONObject();
requestBody.put("machineCode", machineCode);
requestBody.put("screenNo", screenNo);
requestBody.put("message", message);
machineApiService.sendRequest(requestBody.toJSONString(), "/v1/push");
// JSONObject requestBody = new JSONObject();
// requestBody.put("machineCode", machineCode);
// requestBody.put("screenNo", screenNo);
// requestBody.put("message", message);
// machineApiService.sendRequest(requestBody.toJSONString(), "/v1/push");
return true;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment