weixin.popular.bean.wxa.GetAuditstatusResult 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.wxa;
import weixin.popular.bean.BaseResult;
public class GetAuditstatusResult extends BaseResult {
private Integer status;
private String reason; // 当status=1,审核被拒绝时,返回的拒绝原因
public Integer getStatus() {
return status;
}
public void setStatus(Integer status) {
this.status = status;
}
public String getReason(){
return reason;
}
public void setReason(String reason){
this.reason = reason;
}
}