package com.yeshi.fanli.dto.push;
|
|
//推送内容
|
public class PushContentDTO {
|
private String title;
|
private String content;
|
|
public PushContentDTO(String title, String content) {
|
this.title = title;
|
this.content = content;
|
}
|
|
public PushContentDTO() {
|
}
|
|
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;
|
}
|
}
|