Skip to content

Commit b2d18af

Browse files
committed
[Chore]: 검색 타입 enum 추가 (제목, 제목+내용, 작성자)
1 parent 129786c commit b2d18af

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
package com.back.domain.post.enums;
2+
3+
/**
4+
* 검색 타입
5+
* TITLE - 제목
6+
* TITLE_CONTENT - 제목 + 내용
7+
* AUTHOR - 작성자
8+
*/
9+
public enum SearchType {
10+
TITLE, TITLE_CONTENT, AUTHOR
11+
}

0 commit comments

Comments
 (0)