weixin.popular.bean.paymch.MicropayResult 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;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
@XmlRootElement(name="xml")
@XmlAccessorType(XmlAccessType.FIELD)
public class MicropayResult extends MchBase{
private String openid;
private String is_subscribe;
private String trade_type;
private String bank_type;
private String fee_type;
private Integer total_fee;
private String cash_fee_type;
private Integer cash_fee;
private Integer coupon_fee;
private String transaction_id;
private String out_trade_no;
private String attach;
private String time_end;
private String sub_openid;
private String sub_is_subscribe;
private Integer settlement_total_fee;
/**
* 单品优惠 ,请求参数 version=1.0
* @since 2.8.12
*/
@XmlElement
@XmlJavaTypeAdapter(value = MicropayPromotionDetailXmlAdapter.class)
private List promotion_detail;
public String getOpenid() {
return openid;
}
public void setOpenid(String openid) {
this.openid = openid;
}
public String getIs_subscribe() {
return is_subscribe;
}
public void setIs_subscribe(String is_subscribe) {
this.is_subscribe = is_subscribe;
}
public String getTrade_type() {
return trade_type;
}
public void setTrade_type(String trade_type) {
this.trade_type = trade_type;
}
public String getBank_type() {
return bank_type;
}
public void setBank_type(String bank_type) {
this.bank_type = bank_type;
}
public String getFee_type() {
return fee_type;
}
public void setFee_type(String fee_type) {
this.fee_type = fee_type;
}
public Integer getTotal_fee() {
return total_fee;
}
public void setTotal_fee(Integer total_fee) {
this.total_fee = total_fee;
}
public String getCash_fee_type() {
return cash_fee_type;
}
public void setCash_fee_type(String cash_fee_type) {
this.cash_fee_type = cash_fee_type;
}
public Integer getCash_fee() {
return cash_fee;
}
public void setCash_fee(Integer cash_fee) {
this.cash_fee = cash_fee;
}
public Integer getCoupon_fee() {
return coupon_fee;
}
public void setCoupon_fee(Integer coupon_fee) {
this.coupon_fee = coupon_fee;
}
public String getTransaction_id() {
return transaction_id;
}
public void setTransaction_id(String transaction_id) {
this.transaction_id = transaction_id;
}
public String getOut_trade_no() {
return out_trade_no;
}
public void setOut_trade_no(String out_trade_no) {
this.out_trade_no = out_trade_no;
}
public String getAttach() {
return attach;
}
public void setAttach(String attach) {
this.attach = attach;
}
public String getTime_end() {
return time_end;
}
public void setTime_end(String time_end) {
this.time_end = time_end;
}
public String getSub_openid() {
return sub_openid;
}
public void setSub_openid(String sub_openid) {
this.sub_openid = sub_openid;
}
public String getSub_is_subscribe() {
return sub_is_subscribe;
}
public void setSub_is_subscribe(String sub_is_subscribe) {
this.sub_is_subscribe = sub_is_subscribe;
}
public Integer getSettlement_total_fee() {
return settlement_total_fee;
}
public void setSettlement_total_fee(Integer settlement_total_fee) {
this.settlement_total_fee = settlement_total_fee;
}
public List getPromotion_detail() {
return promotion_detail;
}
public void setPromotion_detail(List promotion_detail) {
this.promotion_detail = promotion_detail;
}
}