com.brihaspathee.zeus.domain.repository.FileAcknowledgementRepository Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of file-mgmt-service Show documentation
Show all versions of file-mgmt-service Show documentation
Service that intakes all the files that are received
The newest version!
package com.brihaspathee.zeus.domain.repository;
import com.brihaspathee.zeus.domain.entity.FileAcknowledgement;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;
import java.util.UUID;
/**
* Created in Intellij IDEA
* User: Balaji Varadharajan
* Date: 29, June 2022
* Time: 5:44 AM
* Project: Zeus
* Package Name: com.brihaspathee.zeus.domain.repository
* To change this template use File | Settings | File and Code Template
*/
@Repository
public interface FileAcknowledgementRepository extends JpaRepository {
}