Created
September 25, 2021 19:35
-
-
Save alex-ber/a89de1aff6294d6274fcb9b1a7630182 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.mkyong.dao; | |
import com.mkyong.model.Customer; | |
import org.springframework.data.jpa.repository.Query; | |
import org.springframework.data.repository.CrudRepository; | |
import org.springframework.data.repository.query.Param; | |
import java.util.Date; | |
import java.util.List; | |
import java.util.stream.Stream; | |
public interface CustomerRepository extends CrudRepository<Customer, Long>, CustomerRepositoryCustomAbc{ | |
//... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment