feat(admin-character): 캐릭터 상세 결과에 characterType 추가

This commit is contained in:
Klaus 2025-08-12 16:45:25 +09:00
parent 01ef738d31
commit 00c617ec2e
1 changed files with 2 additions and 0 deletions

View File

@ -9,6 +9,7 @@ data class ChatCharacterDetailResponse(
val imageUrl: String?, val imageUrl: String?,
val description: String, val description: String,
val systemPrompt: String, val systemPrompt: String,
val characterType: String,
val age: Int?, val age: Int?,
val gender: String?, val gender: String?,
val mbti: String?, val mbti: String?,
@ -40,6 +41,7 @@ data class ChatCharacterDetailResponse(
imageUrl = fullImagePath, imageUrl = fullImagePath,
description = chatCharacter.description, description = chatCharacter.description,
systemPrompt = chatCharacter.systemPrompt, systemPrompt = chatCharacter.systemPrompt,
characterType = chatCharacter.characterType.name,
age = chatCharacter.age, age = chatCharacter.age,
gender = chatCharacter.gender, gender = chatCharacter.gender,
mbti = chatCharacter.mbti, mbti = chatCharacter.mbti,