package com.ks.push.pojo.DO;
|
|
import java.util.Map;
|
|
public class BPushMessage {
|
private String title;
|
private String content;
|
private Map<String, String> extras;
|
|
public String getTitle() {
|
return title;
|
}
|
|
public void setTitle(String title) {
|
this.title = title;
|
}
|
|
public String getContent() {
|
return content;
|
}
|
|
public void setContent(String content) {
|
this.content = content;
|
}
|
|
public Map<String, String> getExtras() {
|
return extras;
|
}
|
|
public void setExtras(Map<String, String> extras) {
|
this.extras = extras;
|
}
|
}
|