Open houyouliang opened 7 years ago
package com.hat.db.repository;
import org.springframework.data.jpa.repository.JpaRepository; import org.springframework.data.jpa.repository.JpaSpecificationExecutor; import org.springframework.stereotype.Repository;
import com.hat.bean.Account;
@Repository public interface AccountRepository extends JpaRepository<Account, Long>, JpaSpecificationExecutor{
}
package com.hat.db.repository;
import org.springframework.data.jpa.repository.JpaRepository; import org.springframework.data.jpa.repository.JpaSpecificationExecutor; import org.springframework.stereotype.Repository;
import com.hat.bean.Account;
@Repository public interface AccountRepository extends JpaRepository<Account, Long>, JpaSpecificationExecutor{
}