注册API接口报错修复

This commit is contained in:
liangwen 2025-08-29 16:38:06 +08:00
parent 4f1c9f433e
commit c0bbca3969

View File

@ -65,7 +65,7 @@ public class RegisterApiController extends BaseController
public String updatePwd(@RequestParam(required = true) String email, @RequestParam(required = true) String uuid)
{
JSONObject jsonObj = new JSONObject();
emailService.sendVerifyCode(email, uuid);
emailService.sendEmailCode(email, uuid, "注册验证码");
jsonObj.put("code", 200);
jsonObj.put("msg", "success");
return jsonObj.toJSONString();