fix: 메인 홈 - GetAudioContentMainItem
- JsonProperty를 isPointAvailable 수정 - @JsonProperty를 -> @get:JsonProperty, @param:JsonProperty로 수정
This commit is contained in:
parent
69a63a77d3
commit
ab9fd2bc16
|
@ -12,5 +12,7 @@ data class GetAudioContentMainItem @QueryProjection constructor(
|
||||||
@JsonProperty("creatorNickname") val creatorNickname: String,
|
@JsonProperty("creatorNickname") val creatorNickname: String,
|
||||||
@JsonProperty("price") val price: Int,
|
@JsonProperty("price") val price: Int,
|
||||||
@JsonProperty("duration") val duration: String,
|
@JsonProperty("duration") val duration: String,
|
||||||
@JsonProperty("pointAvailable") val isPointAvailable: Boolean
|
@get:JsonProperty("isPointAvailable")
|
||||||
|
@param:JsonProperty("isPointAvailable")
|
||||||
|
val isPointAvailable: Boolean
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue