weixin.popular.bean.material.Description 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.material;
/**
* 新增永久视频素材需特别注意
* @author LiYi
*
*/
public class Description {
private String title;
private String introduction;
public Description() {
}
public Description(String title, String introduction) {
this.title = title;
this.introduction = introduction;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getIntroduction() {
return introduction;
}
public void setIntroduction(String introduction) {
this.introduction = introduction;
}
}