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.

34 linhas
640 B

  1. package chanjarster.weixin.bean;
  2. import chanjarster.weixin.util.json.WxGsonBuilder;
  3. /**
  4. * 群发时用到的视频素材
  5. * @author chanjarster
  6. *
  7. */
  8. public class WxMassVideo {
  9. protected String media_id;
  10. protected String title;
  11. protected String description;
  12. public String getTitle() {
  13. return title;
  14. }
  15. public void setTitle(String title) {
  16. this.title = title;
  17. }
  18. public String getDescription() {
  19. return description;
  20. }
  21. public void setDescription(String description) {
  22. this.description = description;
  23. }
  24. public String toJson() {
  25. return WxGsonBuilder.INSTANCE.create().toJson(this);
  26. }
  27. }