weixin.popular.bean.wxa.AddnearbypoiData 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.
The newest version!
package weixin.popular.bean.wxa;
public class AddnearbypoiData {
private String audit_id;
private String poi_id;
private String related_credential;
public String getAudit_id() {
return audit_id;
}
public void setAudit_id(String audit_id) {
this.audit_id = audit_id;
}
public String getPoi_id() {
return poi_id;
}
public void setPoi_id(String poi_id) {
this.poi_id = poi_id;
}
public String getRelated_credential() {
return related_credential;
}
public void setRelated_credential(String related_credential) {
this.related_credential = related_credential;
}
}