From 08f1b1f1804a8bd833d42f257908d80e88387b55 Mon Sep 17 00:00:00 2001
From: mitao <2763622819@qq.com>
Date: 星期五, 14 三月 2025 11:27:47 +0800
Subject: [PATCH] 3.5增加登录验证、修改密码、人员列表调整
---
springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/ComPropertyServiceImpl.java | 6 ++++++
1 files changed, 6 insertions(+), 0 deletions(-)
diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/ComPropertyServiceImpl.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/ComPropertyServiceImpl.java
index 32e0a37..476b59d 100644
--- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/ComPropertyServiceImpl.java
+++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/ComPropertyServiceImpl.java
@@ -70,6 +70,7 @@
administratorsUserVO.setAreaId(comPropertyVO.getAreaId());
administratorsUserVO.setName(comPropertyVO.getContactName());
administratorsUserVO.setPhone(comPropertyVO.getPhone());
+ administratorsUserVO.setAppid(userService.detailUser(comPropertyVO.getCreateUserId()).getData().getAppId());
R r=userService.addUserBackstageProperty(administratorsUserVO);
if(R.isOk(r)){
comProperty.setUserId(Long.parseLong(r.getData().toString()));
@@ -145,4 +146,9 @@
comPropertyVO.setPassword(null);
return R.ok(comPropertyVO);
}
+
+ @Override
+ public R noticeList(Integer page, Integer size, Long propertyId) {
+ return R.ok(comPropertyDao.noticeList(new Page(page,size),propertyId));
+ }
}
--
Gitblit v1.7.1