#888 修复微信支付部分接口请求中签名方法不统一的问题

This commit is contained in:
Binary Wang
2018-12-21 20:42:20 +08:00
parent a4a34fcb2e
commit ac944d46ed
2 changed files with 6 additions and 6 deletions

View File

@@ -52,7 +52,7 @@ public class SignUtils {
*/
@Deprecated
public static String createSign(Map<String, String> params, String signKey) {
return createSign(params, null, signKey, new String[0]);
return createSign(params, SignType.MD5, signKey, new String[0]);
}
/**