-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#6 feat/홈 : 도메인 엔티티에 홈 화면 리뷰에 필요한 값 추가
- BuildingType, Review 수정
- Loading branch information
1 parent
d1901eb
commit 78ec3be
Showing
2 changed files
with
4 additions
and
3 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
package com.ftw.domain.entity | ||
|
||
enum class BuildingType { | ||
APARTMENT, | ||
OFFICETEL | ||
enum class BuildingType(val value: String) { | ||
APARTMENT("아파트"), | ||
OFFICETEL("오피스텔") | ||
} |
This file contains 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