package com.cku.jpush; import java.util.HashMap; /** * Created with IntelliJ IDEA. * User: lyy * Date: 2016/7/14 * Time: 14:32 */ public class JpushNotification { private String alert; private String title; private HashMap extras; public JpushNotification() { } public JpushNotification(String alert, String title, HashMap extras) { this.alert = alert; this.title = title; this.extras = extras; } public String getAlert() { return alert; } public void setAlert(String alert) { this.alert = alert; } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public HashMap getExtras() { return extras; } public void setExtras(HashMap extras) { this.extras = extras; } }