All Downloads are FREE. Search and download functionalities are using the official Maven repository.

me.chanjar.weixin.mp.bean.WxMpMassOpenIdsMessage Maven / Gradle / Ivy

There is a newer version: 4.7.1.B
Show newest version
package me.chanjar.weixin.mp.bean;

import me.chanjar.weixin.mp.util.json.WxMpGsonBuilder;

import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;

/**
 * openid列表群发的消息
 *
 * @author chanjarster
 */
public class WxMpMassOpenIdsMessage implements Serializable {
  private static final long serialVersionUID = -8022910911104788999L;

  private List toUsers = new ArrayList<>();
  private String msgType;
  private String content;
  private String mediaId;
  private boolean sendIgnoreReprint = false;

  public WxMpMassOpenIdsMessage() {
    super();
  }

  public String getMsgType() {
    return this.msgType;
  }

  /**
   * 
   * 请使用
   * {@link me.chanjar.weixin.common.api.WxConsts#MASS_MSG_IMAGE}
   * {@link me.chanjar.weixin.common.api.WxConsts#MASS_MSG_NEWS}
   * {@link me.chanjar.weixin.common.api.WxConsts#MASS_MSG_TEXT}
   * {@link me.chanjar.weixin.common.api.WxConsts#MASS_MSG_VIDEO}
   * {@link me.chanjar.weixin.common.api.WxConsts#MASS_MSG_VOICE}
   * 如果msgtype和media_id不匹配的话,会返回系统繁忙的错误
   * 
* * @param msgType */ public void setMsgType(String msgType) { this.msgType = msgType; } public String getContent() { return this.content; } public void setContent(String content) { this.content = content; } public String getMediaId() { return this.mediaId; } public void setMediaId(String mediaId) { this.mediaId = mediaId; } public String toJson() { return WxMpGsonBuilder.INSTANCE.create().toJson(this); } /** * openid列表,最多支持10,000个 */ public List getToUsers() { return this.toUsers; } /** * 提供set方法,方便客户端直接设置所有群发对象的openid列表 * * @param toUsers */ public void setToUsers(List toUsers) { this.toUsers = toUsers; } /** * 添加openid,最多支持10,000个 * * @param openid */ public void addUser(String openid) { this.toUsers.add(openid); } public boolean isSendIgnoreReprint() { return sendIgnoreReprint; } /** * @param sendIgnoreReprint 文章被判定为转载时,是否继续进行群发操作。 */ public void setSendIgnoreReprint(boolean sendIgnoreReprint) { this.sendIgnoreReprint = sendIgnoreReprint; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy