weixin.popular.bean.paymch.Hbinfo 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.paymch;
public class Hbinfo {
private String openid;
private Integer amount;
private String rcv_time;
public String getOpenid() {
return openid;
}
public void setOpenid(String openid) {
this.openid = openid;
}
public Integer getAmount() {
return amount;
}
public void setAmount(Integer amount) {
this.amount = amount;
}
public String getRcv_time() {
return rcv_time;
}
public void setRcv_time(String rcv_time) {
this.rcv_time = rcv_time;
}
}