This commit is contained in:
77
2024-04-28 00:53:38 +08:00
parent 5904eab465
commit 9d8f7ee8ad
5 changed files with 49 additions and 9 deletions

View File

@@ -29,6 +29,8 @@ public interface UserService extends IService<User> {
User getByUsername(String username);
User getByOpenId(String openId);
void resetPassword(Long userId, String password);
User getByUsercode(String usercode);
@@ -60,4 +62,6 @@ public interface UserService extends IService<User> {
void updateBaseUser(UpdateUserReq updateUserReq);
void checkFinishStatus(Long userId);
void removeOpenId(String openId);
}