parent
54bfc357a5
commit
d5573788ad
@ -0,0 +1,37 @@ |
||||
package com.hfkj.model.HwPushModel; |
||||
|
||||
/** |
||||
* @author sum1dream |
||||
*/ |
||||
public class HwPushBody { |
||||
|
||||
/** |
||||
* @Author Sum1Dream |
||||
* @Description // 控制当前是否为测试消息,测试消息只做格式合法性校验,不会推送给用户设备,取值如下:
|
||||
* true:测试消息 |
||||
* false:正式消息(默认值) |
||||
*/ |
||||
private Boolean validate_only; |
||||
|
||||
/** |
||||
* @Author Sum1Dream |
||||
* @Description // 推送消息结构体,message结构体中必须存在有效消息负载以及有效发送目标
|
||||
*/ |
||||
private HwPushMessage hwPushMessage; |
||||
|
||||
public Boolean getValidate_only() { |
||||
return validate_only; |
||||
} |
||||
|
||||
public void setValidate_only(Boolean validate_only) { |
||||
this.validate_only = validate_only; |
||||
} |
||||
|
||||
public HwPushMessage getHwPushMessage() { |
||||
return hwPushMessage; |
||||
} |
||||
|
||||
public void setHwPushMessage(HwPushMessage hwPushMessage) { |
||||
this.hwPushMessage = hwPushMessage; |
||||
} |
||||
} |
@ -0,0 +1,35 @@ |
||||
package com.hfkj.model.HwPushModel; |
||||
|
||||
/** |
||||
* @author sum1dream |
||||
*/ |
||||
public class HwPushMessage { |
||||
|
||||
/** |
||||
* @Author Sum1Dream |
||||
* @Description // 自定义消息负载,通知栏消息支持JSON格式字符串,透传消息支持普通字符串或者JSON格式字符串。
|
||||
*/ |
||||
private String data; |
||||
|
||||
/** |
||||
* @Author Sum1Dream |
||||
* @Description // 按照Token向目标用户推消息。
|
||||
*/ |
||||
private String[] token; |
||||
|
||||
public String getData() { |
||||
return data; |
||||
} |
||||
|
||||
public void setData(String data) { |
||||
this.data = data; |
||||
} |
||||
|
||||
public String[] getToken() { |
||||
return token; |
||||
} |
||||
|
||||
public void setToken(String[] token) { |
||||
this.token = token; |
||||
} |
||||
} |
Loading…
Reference in new issue