weixin.popular.bean.wxopen.Wxamplink Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of weixin-popular Show documentation
Show all versions of weixin-popular Show documentation
The weixin-popular is a JAVA SDK for weixin. Weixin web url is https://mp.weixin.qq.com.
package weixin.popular.bean.wxopen;
public class Wxamplink {
private String appid;
private String notify_users;
private String show_profile;
public String getAppid() {
return appid;
}
public void setAppid(String appid) {
this.appid = appid;
}
public String getNotify_users() {
return notify_users;
}
public void setNotify_users(String notify_users) {
this.notify_users = notify_users;
}
public String getShow_profile() {
return show_profile;
}
public void setShow_profile(String show_profile) {
this.show_profile = show_profile;
}
}