fix(chat): ChatCharacter 엔티티의 isActive 속성 참조 오류 수정

This commit is contained in:
2025-08-07 12:01:34 +09:00
parent 618f80fddc
commit 6340ed27cf
2 changed files with 2 additions and 2 deletions

View File

@@ -10,5 +10,5 @@ import org.springframework.stereotype.Repository
interface ChatCharacterRepository : JpaRepository<ChatCharacter, Long> {
fun findByCharacterUUID(characterUUID: String): ChatCharacter?
fun findByName(name: String): ChatCharacter?
fun findByIsActiveTrue(pageable: Pageable): Page<ChatCharacter>
fun findByActiveTrue(pageable: Pageable): Page<ChatCharacter>
}