1
All checks were successful
Build and Push to Target Registry / 构建并推送镜像到目标仓库 (push) Successful in 12m21s

This commit is contained in:
2025-09-12 19:23:46 +08:00
parent 714b7905fb
commit 9d23fd9341
6 changed files with 89 additions and 53 deletions

View File

@@ -13,10 +13,20 @@ import java.util.List;
*/
public interface RemoteResidentPersonService {
// 查询已上传图片,未授权人员
/**
* 查询已上传图片,未授权人员
*
* @return list
*/
List<RemoteResidentPersonVo> queryUnAuthPerson();
// 更新E8平台id
/**
* 更新e8平台Id
*
* @param personId 人员id
* @param e8Id e8平台Id
* @return Boolean
*/
Boolean updateE8Id(Long personId, Long e8Id);
/**
@@ -27,4 +37,12 @@ public interface RemoteResidentPersonService {
* @return 结果
*/
LoginResidentPerson getResidentPersonInfo(String phone, String tenantId) throws ResidentPersonException;
/**
* 根据入驻员工id,查询信息
*
* @param personId 入驻员工id
* @return vo
*/
RemoteResidentPersonVo queryById(Long personId);
}