Add hubid for user

This commit is contained in:
harish
2024-09-25 17:37:34 +05:30
parent d7e2098b33
commit f2a206991f
22 changed files with 818 additions and 1 deletions

View File

@@ -11,6 +11,8 @@ import net.gepafin.tendermanagement.model.request.*;
import net.gepafin.tendermanagement.model.response.UserResponseBean;
import net.gepafin.tendermanagement.model.util.JWTToken;
import java.util.List;
public interface UserService {
UserResponseBean createUser(UserReq userReq);
@@ -35,4 +37,6 @@ public interface UserService {
UserResponseBean updateUserStatus(Long userId, UserStatusEnum statusReq);
UserResponseBean getValidUser(HttpServletRequest request);
List<UserResponseBean> getUserByHubId(String hubId);
UserResponseBean createUserByHubId(String hubId, UserReq userReq);
}