com.zopen.wechat.pay.dto.PayRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zopen-ato-starter Show documentation
Show all versions of zopen-ato-starter Show documentation
Alibaba Tencent And Others For Spring Boot.
package com.zopen.wechat.pay.dto;
import com.zcj.util.UtilDate;
import com.zcj.util.UtilRandom;
import javax.xml.bind.annotation.XmlRootElement;
import java.io.Serializable;
import java.util.Date;
@XmlRootElement(name = "xml")
public class PayRequest implements Serializable {
private static final long serialVersionUID = 1L;
private String appid;
private String mch_id;
private String device_info;
private String nonce_str;
private String sign;
private String sign_type;
private String body;
private String detail;
private String attach;
private String out_trade_no;
private String fee_type;
private Integer total_fee;
private String spbill_create_ip;
private String time_start;
private String time_expire;
private String goods_tag;
private String notify_url;
private String trade_type;
private String product_id;
private String limit_pay;
private String receipt;
private String openid;
public void initAppPay() {
device_info = "WEB";
nonce_str = UtilRandom.getRandomChar(16);
sign_type = "MD5";
fee_type = "CNY";
time_start = UtilDate.format(new Date(), UtilDate.FORMAT_DATETIME_NOSEP);
trade_type = "APP";
}
public void initNativePay(String productId) {
nonce_str = UtilRandom.getRandomChar(16);
sign_type = "MD5";
fee_type = "CNY";
time_start = UtilDate.format(new Date(), UtilDate.FORMAT_DATETIME_NOSEP);
trade_type = "NATIVE";
product_id = productId;
}
// 小程序支付、微信浏览器H5支付
public void initJsAPI(String openId) {
nonce_str = UtilRandom.getRandomChar(16);
sign_type = "MD5";
fee_type = "CNY";
time_start = UtilDate.format(new Date(), UtilDate.FORMAT_DATETIME_NOSEP);
trade_type = "JSAPI";
openid = openId;
}
@Override
public String toString() {
return "PayRequest{" +
"appid='" + appid + '\'' +
", mch_id='" + mch_id + '\'' +
", device_info='" + device_info + '\'' +
", nonce_str='" + nonce_str + '\'' +
", sign='" + sign + '\'' +
", sign_type='" + sign_type + '\'' +
", body='" + body + '\'' +
", detail='" + detail + '\'' +
", attach='" + attach + '\'' +
", out_trade_no='" + out_trade_no + '\'' +
", fee_type='" + fee_type + '\'' +
", total_fee=" + total_fee +
", spbill_create_ip='" + spbill_create_ip + '\'' +
", time_start='" + time_start + '\'' +
", time_expire='" + time_expire + '\'' +
", goods_tag='" + goods_tag + '\'' +
", notify_url='" + notify_url + '\'' +
", trade_type='" + trade_type + '\'' +
", product_id='" + product_id + '\'' +
", limit_pay='" + limit_pay + '\'' +
", receipt='" + receipt + '\'' +
", openid='" + openid + '\'' +
'}';
}
public String getAppid() {
return appid;
}
public void setAppid(String appid) {
this.appid = appid;
}
public String getMch_id() {
return mch_id;
}
public void setMch_id(String mch_id) {
this.mch_id = mch_id;
}
public String getOpenid() {
return openid;
}
public void setOpenid(String openid) {
this.openid = openid;
}
public String getDevice_info() {
return device_info;
}
public void setDevice_info(String device_info) {
this.device_info = device_info;
}
public String getNonce_str() {
return nonce_str;
}
public void setNonce_str(String nonce_str) {
this.nonce_str = nonce_str;
}
public String getSign() {
return sign;
}
public void setSign(String sign) {
this.sign = sign;
}
public String getProduct_id() {
return product_id;
}
public void setProduct_id(String product_id) {
this.product_id = product_id;
}
public String getSign_type() {
return sign_type;
}
public void setSign_type(String sign_type) {
this.sign_type = sign_type;
}
public String getBody() {
return body;
}
public void setBody(String body) {
this.body = body;
}
public String getDetail() {
return detail;
}
public void setDetail(String detail) {
this.detail = detail;
}
public String getAttach() {
return attach;
}
public void setAttach(String attach) {
this.attach = attach;
}
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 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 getSpbill_create_ip() {
return spbill_create_ip;
}
public void setSpbill_create_ip(String spbill_create_ip) {
this.spbill_create_ip = spbill_create_ip;
}
public String getTime_start() {
return time_start;
}
public void setTime_start(String time_start) {
this.time_start = time_start;
}
public String getTime_expire() {
return time_expire;
}
public void setTime_expire(String time_expire) {
this.time_expire = time_expire;
}
public String getGoods_tag() {
return goods_tag;
}
public void setGoods_tag(String goods_tag) {
this.goods_tag = goods_tag;
}
public String getNotify_url() {
return notify_url;
}
public void setNotify_url(String notify_url) {
this.notify_url = notify_url;
}
public String getTrade_type() {
return trade_type;
}
public void setTrade_type(String trade_type) {
this.trade_type = trade_type;
}
public String getLimit_pay() {
return limit_pay;
}
public void setLimit_pay(String limit_pay) {
this.limit_pay = limit_pay;
}
public String getReceipt() {
return receipt;
}
public void setReceipt(String receipt) {
this.receipt = receipt;
}
}