package com.izouma.nineth.repo; import com.izouma.nineth.domain.UserAddress; 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 UserAddressRepo extends JpaRepository, JpaSpecificationExecutor { @Query("update UserAddress t set t.del = true where t.id = ?1") @Modifying @Transactional void softDelete(Long id); List findAllByUserId(Long userId); @Query("update UserAddress t set t.def = false where t.userId = ?1") @Modifying @Transactional void unsetDefault(Long userId); }