Skip to content

Commit

Permalink
🎨 #1441 修复刷脸支付获取AuthInfo接口字段顺序问题
Browse files Browse the repository at this point in the history
  • Loading branch information
binarywang committed Mar 22, 2020
1 parent ffb25e9 commit 71d6d7f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -221,8 +221,6 @@ public String toXML() {

/**
* 使用快速算法组装xml
*
* @return
*/
private String toFastXml() {
try {
Expand Down Expand Up @@ -297,7 +295,7 @@ protected String[] getIgnoredParamsForSign() {
* 注意:不含sign属性
*/
public Map<String, String> getSignParams() {
Map<String, String> map = new HashMap<>();
Map<String, String> map = new HashMap<>(8);
map.put("appid", appid);
map.put("mch_id", mchId);
map.put("sub_appid", subAppId);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,13 +127,13 @@ protected void checkConstraints() {

@Override
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_name", storeName);
map.put("device_id", deviceId);
map.put("attach", attach);
map.put("rawdata", rawdata);
map.put("now", now);
map.put("version", version);
}

}

0 comments on commit 71d6d7f

Please sign in to comment.