|
@@ -2,11 +2,12 @@ package com.galaxis.manatee.capsule.util;
|
|
|
|
|
|
import org.springframework.data.jpa.repository.JpaRepository;
|
|
|
import org.springframework.data.jpa.repository.JpaSpecificationExecutor;
|
|
|
+import org.springframework.data.repository.NoRepositoryBean;
|
|
|
|
|
|
/**
|
|
|
* @author zcj
|
|
|
* @version 0.1
|
|
|
- * @date 2020/4/8 3:39 下午
|
|
|
*/
|
|
|
+@NoRepositoryBean
|
|
|
public interface GalaxisRepository<T,ID> extends JpaRepository<T, ID>, JpaSpecificationExecutor<T> {
|
|
|
}
|