| 123456789101112131415161718192021 |
- package com.izouma.nineth.repo;
- import com.izouma.nineth.domain.NewsLike;
- 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.util.List;
- public interface NewsLikeRepo extends JpaRepository<NewsLike, Long>, JpaSpecificationExecutor<NewsLike> {
- @Query("update NewsLike t set t.del = true where t.id = ?1")
- @Modifying
- @Transactional
- void softDelete(Long id);
- List<NewsLike> findByUserIdAndNewsId(Long userId, Long newsId);
- List<NewsLike> findByUserIdAndShowroomId(Long userId, Long showroomId);
- }
|