Explorar o código

企业组织机构修改

liangpeile hai 1 ano
pai
achega
6cb5ba271e

+ 7 - 0
crmeb-front/src/main/java/com/zbkj/front/controller/NewFrontApi.java

@@ -194,6 +194,13 @@ public class NewFrontApi {
             queryWrapper2.eq(UserBypassAccount::getEnterpriseId, id);
             queryWrapper2.eq(UserBypassAccount::getIsDelete, 0);
             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);
         } catch (Exception e) {
             return CommonResult.failed();