mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2025-08-24 16:18:51 +08:00
🎨 #1441 修复刷脸支付获取AuthInfo接口字段顺序问题
This commit is contained in:
parent
ffb25e9555
commit
71d6d7fdaa
@ -221,8 +221,6 @@ public abstract class BaseWxPayRequest implements Serializable {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* 使用快速算法组装xml
|
* 使用快速算法组装xml
|
||||||
*
|
|
||||||
* @return
|
|
||||||
*/
|
*/
|
||||||
private String toFastXml() {
|
private String toFastXml() {
|
||||||
try {
|
try {
|
||||||
@ -297,7 +295,7 @@ public abstract class BaseWxPayRequest implements Serializable {
|
|||||||
* 注意:不含sign属性
|
* 注意:不含sign属性
|
||||||
*/
|
*/
|
||||||
public Map<String, String> getSignParams() {
|
public Map<String, String> getSignParams() {
|
||||||
Map<String, String> map = new HashMap<>();
|
Map<String, String> map = new HashMap<>(8);
|
||||||
map.put("appid", appid);
|
map.put("appid", appid);
|
||||||
map.put("mch_id", mchId);
|
map.put("mch_id", mchId);
|
||||||
map.put("sub_appid", subAppId);
|
map.put("sub_appid", subAppId);
|
||||||
|
@ -127,13 +127,13 @@ public class WxPayFaceAuthInfoRequest extends BaseWxPayRequest {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void storeMap(Map<String, String> map) {
|
protected void storeMap(Map<String, String> map) {
|
||||||
|
map.put("now", now);
|
||||||
|
map.put("version", version);
|
||||||
|
map.put("rawdata", rawdata);
|
||||||
map.put("store_id", storeId);
|
map.put("store_id", storeId);
|
||||||
map.put("store_name", storeName);
|
map.put("store_name", storeName);
|
||||||
map.put("device_id", deviceId);
|
map.put("device_id", deviceId);
|
||||||
map.put("attach", attach);
|
map.put("attach", attach);
|
||||||
map.put("rawdata", rawdata);
|
|
||||||
map.put("now", now);
|
|
||||||
map.put("version", version);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user