From 23bd719cebe5feeff4e48fde925b0b39755eea93 Mon Sep 17 00:00:00 2001 From: feiyu02 <risaku@163.com> Date: 星期二, 15 十一月 2022 10:59:50 +0800 Subject: [PATCH] 2022.11.15 --- src/main/kotlin/cn/flightfeather/supervision/lightshare/service/UserinfoService.kt | 9 +++++++-- 1 files changed, 7 insertions(+), 2 deletions(-) diff --git a/src/main/kotlin/cn/flightfeather/supervision/lightshare/service/UserinfoService.kt b/src/main/kotlin/cn/flightfeather/supervision/lightshare/service/UserinfoService.kt index 09154e0..7e23222 100644 --- a/src/main/kotlin/cn/flightfeather/supervision/lightshare/service/UserinfoService.kt +++ b/src/main/kotlin/cn/flightfeather/supervision/lightshare/service/UserinfoService.kt @@ -20,16 +20,21 @@ fun login(loginRequestVo: LoginRequestVo): AccessToken + fun register(loginRequestVo: LoginRequestVo): AccessToken + + fun register2(loginRequestVo: LoginRequestVo): AccessToken fun getAddressBook(userId:String):List<FriendVo> fun upLoadAccountPic(userId: String, files: Array<MultipartFile>): String - fun changePassword(userId: String, oldPassword: String, newPassword: String): Int + fun changePassword(userId: String, oldPassword: String, newPassword: String): BaseResponse<String> fun searchUser(userId: String,condition: UserSearchCondition, page: Int, perPage: Int, response: HttpServletResponse): List<Userinfo> - fun getBaseInfo(userId: String): UserBaseInfo + fun getBaseInfo(userId: String, wxUserId: String?): UserBaseInfo + + fun search(district: String?, sceneType: Int?, userType: Int?, page: Int, perPage: Int): BaseResponse<List<Userinfo>> } \ No newline at end of file -- Gitblit v1.9.3