weixin.popular.bean.scan.infolist.ActionList 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.scan.infolist;
public class ActionList {
private String type;
private String retail_price;
private String name;
private String link;
private String showtype;
private String text;
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public String getRetail_price() {
return retail_price;
}
public void setRetail_price(String retail_price) {
this.retail_price = retail_price;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getLink() {
return link;
}
public void setLink(String link) {
this.link = link;
}
public String getShowtype() {
return showtype;
}
public void setShowtype(String showtype) {
this.showtype = showtype;
}
public String getText() {
return text;
}
public void setText(String text) {
this.text = text;
}
}