All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.egzosn.pay.common.bean.PayMessage Maven / Gradle / Ivy

There is a newer version: 2.14.7
Show newest version
package com.egzosn.pay.common.bean;

import java.io.Serializable;
import java.math.BigDecimal;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Map;

/**
 * 支付回调消息
 * 基础实现,具体可根据具体支付回调的消息去实现
 * @author egan
 * 
 *     email [email protected]
 *     date 2017/3/7 16:37
 *  
*/ public class PayMessage implements Serializable { private Map payMessage = null; private String msgType; private String payType; private String transactionType; private String fromPay; private String describe; public PayMessage(Map payMessage) { this.payMessage = payMessage; } public PayMessage(Map payMessage, String payType, String msgType) { this(payMessage); this.payType = payType; this.msgType = msgType; } public PayMessage(Map payMessage, String msgType, String payType, String transactionType) { this.payMessage = payMessage; this.msgType = msgType; this.payType = payType; this.transactionType = transactionType; } public String getMsgType() { return msgType; } public void setMsgType(String msgType) { this.msgType = msgType; } public String getPayType() { return payType; } public void setPayType(String payType) { this.payType = payType; } public String getTransactionType() { return transactionType; } public void setTransactionType(String transactionType) { this.transactionType = transactionType; } public String getFromPay() { return fromPay; } public void setFromPay(String fromPay) { this.fromPay = fromPay; } public String getDescribe() { return describe; } public void setDescribe(String describe) { this.describe = describe; } public String getDiscount(){ return (String) payMessage.get("discount"); } public String getSubject(){ return (String) payMessage.get("subject"); } /////////微信与支付宝共用 public String getOutTradeNo(){ return (String) payMessage.get("out_trade_no"); } public String getSign(){ return (String) payMessage.get("sign"); } public Number getTotalFee(){ String totalFee = (String) payMessage.get("total_fee"); if (null == totalFee || "".equals(totalFee)){ return 0; } if (isNumber(totalFee)){ return new BigDecimal(totalFee); } return 0; } /////////微信与支付宝共用 public boolean isNumber(String str){ return str.matches("^(-?[1-9]\\d*\\.?\\d*)|(-?0\\.\\d*[1-9])|(-?[0])|(-?[0]\\.\\d*)$"); } @Override public String toString() { return payMessage.toString(); } public Map getPayMessage() { return payMessage; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy