parent
b929b51525
commit
6b7b3efcb1
|
@ -82,6 +82,8 @@ class AdminAudioContentQueryRepositoryImpl(
|
|||
audioContentTheme.theme,
|
||||
audioContentTheme.id,
|
||||
audioContent.price,
|
||||
audioContent.limited,
|
||||
audioContent.remaining,
|
||||
audioContent.isAdult,
|
||||
audioContent.duration,
|
||||
audioContent.content,
|
||||
|
|
|
@ -18,6 +18,8 @@ data class GetAdminContentListItem @QueryProjection constructor(
|
|||
val theme: String,
|
||||
val themeId: Long,
|
||||
val price: Int,
|
||||
val totalContentCount: Int?,
|
||||
val remainingContentCount: Int?,
|
||||
val isAdult: Boolean,
|
||||
val remainingTime: String,
|
||||
var contentUrl: String,
|
||||
|
|
|
@ -81,6 +81,8 @@ class CreatorAdminAudioContentQueryRepositoryImpl(
|
|||
audioContent.member!!.nickname,
|
||||
audioContentTheme.theme,
|
||||
audioContent.price,
|
||||
audioContent.limited,
|
||||
audioContent.remaining,
|
||||
audioContent.isAdult,
|
||||
audioContent.isCommentAvailable,
|
||||
audioContent.duration,
|
||||
|
|
|
@ -15,6 +15,8 @@ data class GetCreatorAdminContentListItem @QueryProjection constructor(
|
|||
val creatorNickname: String,
|
||||
val theme: String,
|
||||
val price: Int,
|
||||
val totalContentCount: Int?,
|
||||
val remainingContentCount: Int?,
|
||||
val isAdult: Boolean,
|
||||
val isCommentAvailable: Boolean,
|
||||
val remainingTime: String,
|
||||
|
|
Loading…
Reference in New Issue