Toggle navigation
Toggle navigation
This project
Loading...
Sign in
2021-1-capstone-design2
/
2017110273
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
sdy
2021-04-13 18:47:02 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
60cca23619a32773e1b6c6187e42b5600ff9025e
60cca236
1 parent
24381ce8
Delete PhoneRepository.java
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
8 deletions
src/main/java/com/esboot/bertsearch/repository/PhoneRepository.java
src/main/java/com/esboot/bertsearch/repository/PhoneRepository.java
deleted
100644 → 0
View file @
24381ce
package
com
.
esboot
.
bertsearch
.
repository
;
import
com.esboot.bertsearch.dto.Phone
;
import
org.springframework.data.elasticsearch.repository.ElasticsearchRepository
;
public
interface
PhoneRepository
extends
ElasticsearchRepository
<
Phone
,
String
>
{
// DTO, PK
Iterable
<
Phone
>
findByModel
(
String
model
);
}
Please
register
or
login
to post a comment