Commit 81e10151 by amateur

1

1 parent e07f9982
......@@ -7,9 +7,6 @@ public class JPushBean {
@JSONField(name = "type")
private String type;
@JSONField(name = "params")
private Params params;
@JSONField(name = "url")
private String url;
......@@ -21,14 +18,6 @@ public class JPushBean {
this.type = type;
}
public Params getParams() {
return params;
}
public void setParams(Params params) {
this.params = params;
}
public String getUrl() {
return url;
}
......
......@@ -62,9 +62,6 @@ public class JPushReceiver extends JPushMessageReceiver {
if ("learn".equals(bean.getType())) {
String url = bean.getUrl();
if (null != bean.getParams()) {
url = bean.getParams().getUrl();
}
if (TextUtils.isEmpty(url)) return;
OpenUrlBean dataBean = new OpenUrlBean();
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!