package org.yeshi.utils.entity.wx;
|
|
import java.math.BigDecimal;
|
|
/**
|
* 微信支付统一下单参数
|
*
|
* @author Administrator
|
*
|
*/
|
public class WXPlaceOrderParams {
|
private String orderNo;
|
private BigDecimal fee;
|
private String openId;
|
private String body;
|
private String ip;
|
private String tradeType;
|
private String notifyUrl;
|
|
private WXAPPInfo info;
|
|
public String getOrderNo() {
|
return orderNo;
|
}
|
|
public void setOrderNo(String orderNo) {
|
this.orderNo = orderNo;
|
}
|
|
public BigDecimal getFee() {
|
return fee;
|
}
|
|
public void setFee(BigDecimal fee) {
|
this.fee = fee;
|
}
|
|
public String getOpenId() {
|
return openId;
|
}
|
|
public void setOpenId(String openId) {
|
this.openId = openId;
|
}
|
|
public String getBody() {
|
return body;
|
}
|
|
public void setBody(String body) {
|
this.body = body;
|
}
|
|
public String getIp() {
|
return ip;
|
}
|
|
public void setIp(String ip) {
|
this.ip = ip;
|
}
|
|
public String getTradeType() {
|
return tradeType;
|
}
|
|
public void setTradeType(String tradeType) {
|
this.tradeType = tradeType;
|
}
|
|
public WXAPPInfo getInfo() {
|
return info;
|
}
|
|
public void setInfo(WXAPPInfo info) {
|
this.info = info;
|
}
|
|
public String getNotifyUrl() {
|
return notifyUrl;
|
}
|
|
public void setNotifyUrl(String notifyUrl) {
|
this.notifyUrl = notifyUrl;
|
}
|
|
}
|