Skip to content

Commit

Permalink
repo modified
Browse files Browse the repository at this point in the history
  • Loading branch information
IN40068837 authored and IN40068837 committed Dec 15, 2024
1 parent 8e2126f commit fa0c5c9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public interface IEMRUserRepositoryCustom extends CrudRepository<M_User, Long> {
@Query("UPDATE M_User u set u.StatusID = 2 where u.UserID = :userId")
int updateSetUserStatusActive(@Param("userId") Long userId);

@Query(" SELECT u FROM M_User u WHERE u.userID = :userID AND u.Deleted = false ")
public M_User getUserByUserID(@Param("userID") Long userID);
@Query(" SELECT u FROM M_User u WHERE u.UserID = :UserID AND u.Deleted = false ")
public M_User getUserByUserID(@Param("UserID") Long UserID);

}

0 comments on commit fa0c5c9

Please sign in to comment.