1
0
mirror of synced 2025-12-29 06:37:58 +08:00

添加群发支持

This commit is contained in:
Daniel Qian
2014-08-25 11:01:09 +08:00
parent 71215bbe79
commit f326d7e72e
20 changed files with 682 additions and 60 deletions

View File

@@ -0,0 +1,33 @@
package chanjarster.weixin.bean;
import chanjarster.weixin.util.json.WxGsonBuilder;
/**
* 群发时用到的视频素材
* @author chanjarster
*
*/
public class WxMassVideo {
protected String media_id;
protected String title;
protected String description;
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public String toJson() {
return WxGsonBuilder.INSTANCE.create().toJson(this);
}
}