| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219 |
- package com.izouma.nineth.repo;
- import com.izouma.nineth.domain.User;
- import com.izouma.nineth.enums.AuthStatus;
- import com.izouma.nineth.security.Authority;
- import org.springframework.cache.annotation.CacheEvict;
- import org.springframework.cache.annotation.Cacheable;
- import org.springframework.data.jpa.repository.JpaRepository;
- import org.springframework.data.jpa.repository.JpaSpecificationExecutor;
- import org.springframework.data.jpa.repository.Modifying;
- import org.springframework.data.jpa.repository.Query;
- import javax.transaction.Transactional;
- import java.time.LocalDateTime;
- import java.util.Collection;
- import java.util.List;
- import java.util.Optional;
- public interface UserRepo extends JpaRepository<User, Long>, JpaSpecificationExecutor<User> {
- @Transactional
- @Modifying
- @Query("update User u set u.del = true where u.id = ?1")
- void softDelete(Long id);
- Optional<User> findByUsernameAndDelFalse(String username);
- List<User> findAllByPhoneIn(Collection<String> phones);
- List<User> findAllByAuthoritiesContainsAndDelFalse(Authority authority);
- Optional<User> findByOpenIdAndDelFalse(String openId);
- Optional<User> findByPhoneAndDelFalse(String phone);
- @Cacheable(value = "user", key = "#userId")
- Optional<User> findByIdAndDelFalse(Long userId);
- @Transactional
- @Modifying
- @Query("update User u set u.followers = u.followers + ?1 where u.id = ?1")
- void addFollow(Long userId, int num);
- @Query("select distinct u from User u join Follow f on u.id = f.followUserId " +
- "where f.userId = ?1 and u.del = false ")
- List<User> userFollows(Long userId);
- @Query("select distinct u from User u join Follow f on u.id = f.userId " +
- "where f.followUserId = ?1 and u.del = false ")
- List<User> userFollowers(Long userId);
- @Transactional
- @Modifying
- @Query(value = "update user set follows = (select count(*) from follow " +
- "where follow.user_id = ?1) where user.id = ?1", nativeQuery = true)
- @CacheEvict(value = {"myUserInfo","user"} ,allEntries = true)
- void updateFollows(Long userId);
- @Transactional
- @Modifying
- @Query(value = "update user set followers = (select count(*) from follow " +
- "where follow.follow_user_id = ?1) where user.id = ?1", nativeQuery = true)
- @CacheEvict(value = {"myUserInfo","user"} ,allEntries = true)
- void updateFollowers(Long userId);
- @Transactional
- @Modifying
- @Query(value = "update collection_info join user on collection_info.minter_id = user.id " +
- "set collection_info.minter = user.nickname, " +
- " collection_info.minter_avatar = user.avatar " +
- "where user.id = ?1", nativeQuery = true)
- void updateMinterForCollection(Long userId);
- @Transactional
- @Modifying
- @Query(value = "update collection_info join user on collection_info.owner_id = user.id " +
- "set collection_info.owner = user.nickname, " +
- " collection_info.owner_avatar = user.avatar " +
- "where user.id = ?1", nativeQuery = true)
- void updateOwnerForCollection(Long userId);
- @Transactional
- @Modifying
- @Query(value = "update order_info join user on order_info.minter_id = user.id " +
- "set order_info.minter = user.nickname, " +
- " order_info.minter_avatar = user.avatar " +
- "where user.id = ?1", nativeQuery = true)
- void updateMinterForOrder(Long userId);
- @Transactional
- @Modifying
- @Query(value = "update asset join user on asset.minter_id = user.id " +
- "set asset.minter = user.nickname, " +
- " asset.minter_avatar = user.avatar " +
- "where user.id = ?1", nativeQuery = true)
- void updateMinterForAsset(Long userId);
- List<User> findByPhoneInAndDelFalse(Iterable<String> phone);
- List<User> findByIdInAndDelFalse(Iterable<Long> userId);
- @Query(value = "update asset join user on asset.minter_id = user.id " +
- "set asset.minter = user.nickname, " +
- " asset.minter_avatar = user.avatar " +
- "where user.id = ?1 ", nativeQuery = true)
- @Modifying
- @Transactional
- void updateAssetMinter(Long userId);
- @Query(value = "update asset join user on asset.owner_id = user.id " +
- "set asset.owner = user.nickname, " +
- " asset.owner_avatar = user.avatar " +
- "where user.id = ?1 ", nativeQuery = true)
- @Modifying
- @Transactional
- void updateAssetOwner(Long userId);
- @Query(value = "update collection_info join user on collection_info.minter_id = user.id " +
- "set collection_info.minter = user.nickname, " +
- " collection_info.minter_avatar = user.avatar " +
- "where user.id = ?1 ", nativeQuery = true)
- @Modifying
- @Transactional
- void updateCollectionMinter(Long userId);
- @Query(value = "update collection_info join user on collection_info.owner_id = user.id " +
- "set collection_info.owner = user.nickname, " +
- " collection_info.owner_avatar = user.avatar " +
- "where user.id = ?1 ", nativeQuery = true)
- @Modifying
- @Transactional
- void updateCollectionOwner(Long userId);
- @Query(value = "update order_info join user on order_info.minter_id = user.id " +
- "set order_info.minter = user.nickname, " +
- " order_info.minter_avatar = user.avatar " +
- "where user.id = ?1 ", nativeQuery = true)
- @Modifying
- @Transactional
- void updateOrderMinter(Long userId);
- @Query(value = "update token_history join user on token_history.from_user_id = user.id " +
- "set token_history.from_user = user.nickname, " +
- " token_history.from_avatar = user.avatar " +
- "where user.id = ?1 ", nativeQuery = true)
- @Modifying
- @Transactional
- void updateHistoryFromUser(Long userId);
- @Query(value = "update token_history join user on token_history.to_user_id = user.id " +
- "set token_history.to_user = user.nickname, " +
- " token_history.to_avatar = user.avatar " +
- "where user.id = ?1 ", nativeQuery = true)
- @Modifying
- @Transactional
- void updateHistoryToUser(Long userId);
- @Transactional
- @Modifying
- @Query("update User u set u.sales = ?2 where u.id = ?1")
- void setSales(Long userId, int sales);
- List<User> findByAuthoritiesContains(Authority authority);
- @Transactional
- @Modifying
- @Query("update User u set u.sales = COALESCE(u.sales, 0) + ?2 where u.id = ?1")
- public void increaseSales(Long id, int num);
- @Query("select phone from User where id = ?1 and del = false")
- String findPhoneById(Long id);
- List<User> findAllByCollectionIdAndCollectionInvitor(Long collectionId, Long collectionInvitor);
- int countAllByCollectionIdAndCollectionInvitor(Long collectionId, Long collectionInvitor);
- long countAllByAuthoritiesContainsAndDelFalse(Authority authority);
- List<User> findAllByCreatedAtIsAfterAndAuthoritiesContains(LocalDateTime createdAt, Authority authorities);
- List<User> findBySettleAccountIdIsNotNull();
- @Transactional
- @Modifying
- @Query("update User set vipPoint = vipPoint + ?2 where id = ?1")
- void addVipPoint(Long id, int num);
- @Transactional
- @Modifying
- @Query("update User set vipPoint = ?2 where id = ?1")
- void updateVipPoint(Long id, int num);
- @Query("update User u set u.authStatus = ?2, u.authId = ?3 where u.id = ?1")
- @Transactional
- @Modifying
- void setAuthStatus(Long id, AuthStatus status, Long authId);
- @Query(nativeQuery = true, value = "select collection_invitor" +
- " from user" +
- " where collection_id = ?1" +
- " group by collection_invitor" +
- " having count(id) >= ?2")
- List<Long> findInvitorByCollectionId(Long collectionId, int size);
- @Transactional
- @Modifying
- @Query("update User set vipPoint = 1 where vipPoint = 0 and id in ?1")
- void updateAllByInvitor(Collection<Long> ids);
- List<User> findAllByCollectionId(Long collectionId);
- @Query(value = "update showroom join user on showroom.user_id = user.id " +
- "set showroom.nickname = user.nickname " +
- "where user.id = ?1 ", nativeQuery = true)
- @Modifying
- @Transactional
- void updateShowroomToUser(Long userId);
- }
|