|
@@ -194,6 +194,13 @@ public class NewFrontApi {
|
|
queryWrapper2.eq(UserBypassAccount::getEnterpriseId, id);
|
|
queryWrapper2.eq(UserBypassAccount::getEnterpriseId, id);
|
|
queryWrapper2.eq(UserBypassAccount::getIsDelete, 0);
|
|
queryWrapper2.eq(UserBypassAccount::getIsDelete, 0);
|
|
List<UserBypassAccount> list = userBypassAccountService.list(queryWrapper2);
|
|
List<UserBypassAccount> list = userBypassAccountService.list(queryWrapper2);
|
|
|
|
+
|
|
|
|
+ UserEnterprise userEnterprise = userEnterpriseService.getById(id);
|
|
|
|
+ UserBypassAccount userBypassAccount = new UserBypassAccount();
|
|
|
|
+ userBypassAccount.setDepartment(userEnterprise.getDepartment());
|
|
|
|
+ userBypassAccount.setAccount(userEnterprise.getAccount());
|
|
|
|
+ userBypassAccount.setRealName(userEnterprise.getRealName());
|
|
|
|
+ list.add(userBypassAccount);
|
|
return CommonResult.success(list);
|
|
return CommonResult.success(list);
|
|
} catch (Exception e) {
|
|
} catch (Exception e) {
|
|
return CommonResult.failed();
|
|
return CommonResult.failed();
|