Commit 14502a4d authored by liqin's avatar liqin 💬

bug fixed

parent d032a9fe
...@@ -203,7 +203,7 @@ public class ChinaMobileRestApiController extends BaseController { ...@@ -203,7 +203,7 @@ public class ChinaMobileRestApiController extends BaseController {
mac = AESUtils.aesDecrypt(mac); mac = AESUtils.aesDecrypt(mac);
password = AESUtils.aesDecrypt(password); password = AESUtils.aesDecrypt(password);
if (!mac.equals(operation.getMac())) { if (!mac.toUpperCase().equals(operation.getMac().toUpperCase())) {
resultMap.put("resultCode", "400"); resultMap.put("resultCode", "400");
resultMap.put("message", "mac地址不正确!"); resultMap.put("message", "mac地址不正确!");
return resultMap; return resultMap;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment