24.02.19 대용량 오류메시지 넣기 깃허브에 안올라갈때
data class StoreDto( val id: Int, val shopName: String, val mallName: String, val domain: String, val email: String, val phoneNumber: String, val businessType: String?, val address: String, val totalEvaluation: Int?, // 타입을 Int?로 변경 val situation: String, val monitoringDate: String ) { constructor(store: Store) : this( id = store.id, shopName = store.shopName, mallName = store.mallName, domain =..
24.02.07 댓글, 게시글, 로그인 수정. 토큰
게시글 조회 API 호출시 해당 게시글의 댓글 목록도 응답을 하려면, data class PostDto( val id: Long, val title: String, val nickname: String, val content: String, val createdAt: LocalDateTime, val userId: Long, val comments: List // 이 부분을 추가 ) { companion object { fun from(post: Post, comments: List = listOf()): PostDto { return PostDto( id = post.id!!, title = post.title, nickname = post.nickname, content = post.content, ..