|
@@ -142,6 +142,7 @@ public class AccountServiceImpl extends ServiceImpl<IAccountMapper, Account> imp
|
|
|
account.setEndCustomer(param.getEndCustomer());
|
|
|
account.setRemark(param.getRemark());
|
|
|
account.setBusinessName(param.getBusinessName());
|
|
|
+ account.setUpdaterId(param.getCreaterId());
|
|
|
this.save(account);
|
|
|
|
|
|
UserAuthInfo userAuthInfo = new UserAuthInfo();
|
|
@@ -153,6 +154,7 @@ public class AccountServiceImpl extends ServiceImpl<IAccountMapper, Account> imp
|
|
|
userAuthInfo.setState(CommonStatus.YES.code().intValue());
|
|
|
userAuthInfo.setEffectTime(new Date());
|
|
|
userAuthInfo.setCreaterId(param.getCreaterId());
|
|
|
+ userAuthInfo.setUpdaterId(param.getUpdaterId());
|
|
|
userAuthService.save(userAuthInfo);
|
|
|
|
|
|
//设置redis缓存
|