🐛 #2422 【微信支付】修复企业付款给员工接口签名错误问题

This commit is contained in:
dagewang 2021-12-07 13:54:20 +08:00 committed by GitHub
parent e3fc624052
commit 7f11938799
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -227,4 +227,9 @@ public class EntWxEmpPayRequest extends BaseWxPayRequest {
map.put("approval_type", approvalType.toString());
map.put("agentid", agentId.toString());
}
@Override
protected String[] getIgnoredParamsForSign() {
return new String[]{"sign_type"};
}
}