dev #8

Closed
JoeKung wants to merge 72 commits from dev into int
2 changed files with 0 additions and 18 deletions
Showing only changes of commit 96ae9bb609 - Show all commits

View File

@@ -1,9 +0,0 @@
package com.printcalculator.repository;
import org.springframework.data.jpa.domain.AbstractAuditable;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.data.repository.NoRepositoryBean;
@NoRepositoryBean
public interface AbstractAuditableRepository<T extends AbstractAuditable> extends JpaRepository<T, PK> {
}

View File

@@ -1,9 +0,0 @@
package com.printcalculator.repository;
import org.springframework.data.jpa.domain.AbstractPersistable;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.data.repository.NoRepositoryBean;
@NoRepositoryBean
public interface AbstractPersistableRepository<T extends AbstractPersistable> extends JpaRepository<T, PK> {
}