|
@@ -231,4 +231,14 @@ public class AccountServiceImpl extends ServiceImpl<IAccountMapper, Account> imp
|
|
}
|
|
}
|
|
return ResultData.ok(PageInfo.PageInfo(appUserVoPage));
|
|
return ResultData.ok(PageInfo.PageInfo(appUserVoPage));
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public void deleteApp(UpdateAppUserParamVo param) {
|
|
|
|
+ Account account = new Account();
|
|
|
|
+ account.setId(param.getId());
|
|
|
|
+ account.setUpdaterId(param.getUpdaterId());
|
|
|
|
+ this.updateById(account);
|
|
|
|
+
|
|
|
|
+ this.removeById(account.getId());
|
|
|
|
+ }
|
|
}
|
|
}
|