Files
CompanyRegister/backend/src/main/java/com/smartoffice/notification/NotificationRepository.java
2026-01-28 23:56:33 +08:00

11 lines
315 B
Java

package com.smartoffice.notification;
import com.smartoffice.user.User;
import org.springframework.data.jpa.repository.JpaRepository;
import java.util.List;
public interface NotificationRepository extends JpaRepository<Notification, Long> {
List<Notification> findAllByUserOrderByCreatedAtDesc(User user);
}