![JAR search and dependency download from the Maven repository](/logo.png)
me.chanjar.weixin.channel.bean.sharer.SharerSearchParam Maven / Gradle / Ivy
package me.chanjar.weixin.channel.bean.sharer;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonInclude.Include;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.io.Serializable;
import lombok.Data;
/**
* @author Zeyes
*/
@Data
@JsonInclude(Include.NON_NULL)
public class SharerSearchParam implements Serializable {
private static final long serialVersionUID = -6763899740755735718L;
/** 分享员openid */
@JsonProperty("openid")
private String openid;
/** 微信号 */
@JsonProperty("username")
private String username;
public SharerSearchParam() {
}
public SharerSearchParam(String openid, String username) {
this.openid = openid;
this.username = username;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy