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;
|
|
//附加数据-V3接口中使用,支付结果通知中会原样返回
|
private String attach;
|
|
|
private WXAPPInfo app;
|
|
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 getApp() {
|
return app;
|
}
|
|
public void setApp(WXAPPInfo app) {
|
this.app = app;
|
}
|
|
|
public String getAttach() {
|
return attach;
|
}
|
|
public void setAttach(String attach) {
|
this.attach = attach;
|
}
|
|
public String getNotifyUrl() {
|
return notifyUrl;
|
}
|
|
public void setNotifyUrl(String notifyUrl) {
|
this.notifyUrl = notifyUrl;
|
}
|
|
}
|