parent
3f86862ae9
commit
05c293ed6d
|
@ -4,7 +4,7 @@ data class GetCreatorAdminContentSeriesDetailResponse(
|
||||||
val seriesId: Long,
|
val seriesId: Long,
|
||||||
val title: String,
|
val title: String,
|
||||||
val introduction: String,
|
val introduction: String,
|
||||||
val coverImage: String,
|
val coverImageUrl: String,
|
||||||
val publishedDaysOfWeek: String,
|
val publishedDaysOfWeek: String,
|
||||||
val genre: String,
|
val genre: String,
|
||||||
val keywords: String,
|
val keywords: String,
|
||||||
|
|
|
@ -62,7 +62,7 @@ data class Series(
|
||||||
seriesId = id!!,
|
seriesId = id!!,
|
||||||
title = title,
|
title = title,
|
||||||
introduction = introduction,
|
introduction = introduction,
|
||||||
coverImage = "$imageHost/$coverImage!!",
|
coverImageUrl = "$imageHost/${coverImage!!}",
|
||||||
publishedDaysOfWeek = publishedDaysOfWeekText(),
|
publishedDaysOfWeek = publishedDaysOfWeekText(),
|
||||||
genre = genre!!.genre,
|
genre = genre!!.genre,
|
||||||
keywords = keywordList.map { it.keyword!!.tag }.joinToString(" ") { it },
|
keywords = keywordList.map { it.keyword!!.tag }.joinToString(" ") { it },
|
||||||
|
|
Loading…
Reference in New Issue