调整验签

This commit is contained in:
guohb
2024-04-11 11:21:40 +08:00
parent 5c12029ffa
commit f9dab07f8f

View File

@@ -46,7 +46,7 @@ public class KdzApiController {
//用户唯一标识id
sb.append("timestamp=").append(request.getTimestamp()).append("&");
//企业唯一标识enterpriseId
sb.append("enterpriseId=").append(eid).append("&");
sb.append("enterpriseId=").append(eid);
String md5 = EncryptUtil.xfsgMd5(sb.toString());
return md5.equals(request.getSign());
}