Skip to content

Commit

Permalink
Merge branch 'main' into 57-bookmark-test
Browse files Browse the repository at this point in the history
  • Loading branch information
meltapplee committed Dec 3, 2024
2 parents 2f52ab6 + 9ddf503 commit 47e945a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/main/kotlin/org/meogo/domain/review/domain/Review.kt
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class Review(
var content: String,

@Column(name = "key_word")
val keyWord: String,
var keyWord: String,

var picture: String?

Expand All @@ -45,6 +45,7 @@ class Review(
): Review {
this.content = content
this.star = star
this.keyWord = keyWord
this.picture = picture
return this
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class CareerFeignClientService(
}

fun addToList(schoolInfoJson: CareerSchoolListResponse): List<School> {
val content = schoolInfoJson.dataSearch.content ?: return emptyList()
val content = schoolInfoJson.dataSearch.content
return content.map { school ->
School(
id = school.seq.toInt(),
Expand Down

0 comments on commit 47e945a

Please sign in to comment.