fix 优化签名时未进行大写转换, 与文档不一致

This commit is contained in:
DaxPay
2025-04-07 11:45:01 +08:00
committed by daxpay
parent 844a9e4952
commit e75da86c42
2 changed files with 2 additions and 0 deletions

View File

@@ -134,6 +134,7 @@ public class PaySignUtil {
String s = content.toString();
s = StrUtil.replace(s,"\\","");
s = StrUtil.replace(s,"\"","");
s = s.toUpperCase();
return s;
}

View File

@@ -135,6 +135,7 @@ public class PaySignUtil {
String s = content.toString();
s = StrUtil.replace(s,"\\","");
s = StrUtil.replace(s,"\"","");
s = s.toUpperCase();
return s;
}