mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2026-03-10 00:13:40 +08:00
createOrder方法增加H5支付的支持
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
package com.github.binarywang.wxpay.bean.order;
|
||||
|
||||
import com.thoughtworks.xstream.annotations.XStreamAlias;
|
||||
import lombok.Builder;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* <pre>
|
||||
* 微信H5支付统一下单后发起支付拼接所需参数实现类.
|
||||
* Created by Binary Wang on 2018-4-21.
|
||||
* </pre>
|
||||
*
|
||||
* @author <a href="https://github.com/binarywang">Binary Wang</a>
|
||||
*/
|
||||
@Data
|
||||
@Builder
|
||||
public class WxPayMwebOrderResult {
|
||||
@XStreamAlias("mwebUrl")
|
||||
private String mwebUrl;
|
||||
}
|
||||
Reference in New Issue
Block a user