From bb422237bcfa3a063c3a52c3388ffdec0dba573a Mon Sep 17 00:00:00 2001 From: tianyongbao Date: Mon, 15 Jun 2026 12:09:13 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E7=94=A8=E6=88=B7=E4=BF=AE=E6=94=B9?= =?UTF-8?q?=E6=89=8B=E6=9C=BA=E5=8F=B7=E7=9A=84=E6=97=B6=E5=80=99=EF=BC=8C?= =?UTF-8?q?=E5=AF=B9=E5=BA=94=E7=9A=84=E7=94=A8=E6=88=B7=E7=9A=84userName?= =?UTF-8?q?=E4=B9=9F=E9=9C=80=E8=A6=81=E5=90=8C=E6=AD=A5=E4=BF=AE=E6=94=B9?= =?UTF-8?q?=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../main/java/com/intc/fishery/controller/AquUserController.java | 1 + 1 file changed, 1 insertion(+) diff --git a/intc-modules/intc-fishery/src/main/java/com/intc/fishery/controller/AquUserController.java b/intc-modules/intc-fishery/src/main/java/com/intc/fishery/controller/AquUserController.java index d62df18..dbd0ed3 100644 --- a/intc-modules/intc-fishery/src/main/java/com/intc/fishery/controller/AquUserController.java +++ b/intc-modules/intc-fishery/src/main/java/com/intc/fishery/controller/AquUserController.java @@ -438,6 +438,7 @@ public class AquUserController extends BaseController { // 同步更新 SysUser 中的 phonenumber SysUserBo sysUserBo = new SysUserBo(); sysUserBo.setUserId(userId); + sysUserBo.setUserName(request.getNewMobilePhone()); sysUserBo.setPhonenumber(request.getNewMobilePhone()); sysUserService.updateUserProfile(sysUserBo);