feat(content): 콘텐츠 업로드 request, 상세 조회 response에 languageCode 추가

- CreateAudioContentRequest, GetAudioContentDetailResponse
This commit is contained in:
2025-11-24 12:31:49 +09:00
parent 76806e2e90
commit edaea84a5b
4 changed files with 6 additions and 1 deletions

View File

@@ -32,6 +32,7 @@ data class AudioContent(
var title: String,
@Column(columnDefinition = "TEXT", nullable = false)
var detail: String,
var languageCode: String?,
var playCount: Long = 0,
var price: Int = 0,
var releaseDate: LocalDateTime? = null,