package com.yeshi.fanli.dto.push;
|
|
import com.yeshi.fanli.entity.SystemEnum;
|
|
import java.util.List;
|
|
public class PushBaseContent {
|
private String title;
|
private String content;
|
private List<Integer> versionCodeList;
|
private SystemEnum system;
|
|
|
public PushBaseContent() {
|
}
|
|
public PushBaseContent(String title, String content, List<Integer> versionCodeList, SystemEnum system) {
|
this.title = title;
|
this.content = content;
|
this.versionCodeList = versionCodeList;
|
this.system = system;
|
}
|
|
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 List<Integer> getVersionCodeList() {
|
return versionCodeList;
|
}
|
|
public void setVersionCodeList(List<Integer> versionCodeList) {
|
this.versionCodeList = versionCodeList;
|
}
|
|
public SystemEnum getSystem() {
|
return system;
|
}
|
|
public void setSystem(SystemEnum system) {
|
this.system = system;
|
}
|
}
|