Skip to content

Commit 9d73f85

Browse files
committed
feat(be): ai codeReview 반영,ã�기본 값 null로 변경
1 parent 2ccabbd commit 9d73f85

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/kotlin/com/back/koreaTravelGuide/domain/ai/tour/dto/TourSearchParams.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ data class TourSearchParams(
1212
// 페이지 번호, 1로 지정
1313
val pageNo: Int = DEFAULT_PAGE,
1414
// 관광타입 ID, 미 입력시 전체 조회 (12:관광지, 38 : 쇼핑...),
15-
val contentTypeId: String? = "",
15+
val contentTypeId: String? = null,
1616
// 지역코드, 미 입력시 지역 전체 조회 (1:서울, 2:인천...)
17-
val areaCode: String? = "",
17+
val areaCode: String? = null,
1818
// 시군구코드, 미 입력시 전체 조회
19-
val sigunguCode: String? = "",
19+
val sigunguCode: String? = null,
2020
) {
2121
companion object {
2222
const val DEFAULT_ROWS = 10

0 commit comments

Comments
 (0)