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