mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2026-03-10 00:13:40 +08:00
引入配置方法,使得微信支付能够支持仿真测试环境 #119
This commit is contained in:
@@ -24,8 +24,7 @@ import java.util.Map;
|
||||
* @author <a href="https://github.com/binarywang">binarywang(Binary Wang)</a>
|
||||
* </pre>
|
||||
*/
|
||||
@XStreamAlias("xml")
|
||||
public class WxPayBaseResult {
|
||||
public abstract class WxPayBaseResult {
|
||||
/**
|
||||
* 返回状态码
|
||||
*/
|
||||
|
||||
@@ -0,0 +1,15 @@
|
||||
package me.chanjar.weixin.mp.bean.pay.result;
|
||||
|
||||
import com.thoughtworks.xstream.annotations.XStreamAlias;
|
||||
|
||||
/**
|
||||
* <pre>
|
||||
* 微信支付结果仅包含有return 和result等相关信息的的属性类
|
||||
* Created by Binary Wang on 2017-01-09.
|
||||
* @author <a href="https://github.com/binarywang">binarywang(Binary Wang)</a>
|
||||
* </pre>
|
||||
*/
|
||||
|
||||
@XStreamAlias("xml")
|
||||
public class WxPayCommonResult extends WxPayBaseResult {
|
||||
}
|
||||
Reference in New Issue
Block a user