更改发送短信,

This commit is contained in:
lyf
2023-01-28 17:21:04 +08:00
parent b017339f5f
commit 76c4265134
38 changed files with 446 additions and 1831 deletions

View File

@@ -51,7 +51,7 @@ public class PhoneCodeController {
}
String checkCode = StringUtil.random(4);
Result<Object> objectResult = validateCodeUtil.requestValidateCode(param, checkCode);
Result<Object> objectResult = validateCodeUtil.requestValidateCodeALi(param, checkCode);
if (objectResult != null && objectResult.getCode() == ResultCode.FAIL.code()) {
result.put(Constant.RESULT_CODE_FAIL, objectResult.getMessage());
return JSON.toJSONString(result);
@@ -82,7 +82,7 @@ public class PhoneCodeController {
String checkCode = StringUtil.random(4);
Result<Object> objectResult = validateCodeUtil.requestValidateCode(phone, checkCode);
Result<Object> objectResult = validateCodeUtil.requestValidateCodeALi(phone, checkCode);
if (objectResult != null && objectResult.getCode() == ResultCode.FAIL.code()) {
result.put(Constant.RESULT_CODE_FAIL, objectResult.getMessage());
return JSON.toJSONString(result);