dev --- 3.8.0.A版本, openProject引用 ;
formao-live --- 3.7.0.B 版本, formallProject引用
Não pode escolher mais do que 25 tópicos
Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
|
- 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);
- }
-
- }
|