관리자 - FAQ API

This commit is contained in:
2023-08-06 22:10:33 +09:00
parent 87a5ceee9c
commit a983595bad
9 changed files with 234 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
package kr.co.vividnext.sodalive.faq
import com.querydsl.core.annotations.QueryProjection
data class GetFaqResponseItem @QueryProjection constructor(
val id: Long,
val category: String,
val question: String,
val answer: String
)