weixin.popular.bean.wxaapi.GetPriTemplateListResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of weixin-popular Show documentation
Show all versions of weixin-popular Show documentation
The weixin-popular is a JAVA SDK for weixin. Weixin web url is https://mp.weixin.qq.com.
The newest version!
package weixin.popular.bean.wxaapi;
import weixin.popular.bean.BaseResult;
import java.util.List;
public class GetPriTemplateListResult extends BaseResult {
private List data;
public List getData() {
return data;
}
public void setData(List data) {
this.data = data;
}
public static class PriTemplate {
private String priTmplId;
private String title;
private String content;
private String example;
private Integer type;
public String getPriTmplId() {
return priTmplId;
}
public void setPriTmplId(String priTmplId) {
this.priTmplId = priTmplId;
}
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 String getExample() {
return example;
}
public void setExample(String example) {
this.example = example;
}
public Integer getType() {
return type;
}
public void setType(Integer type) {
this.type = type;
}
}
}