From d7c28ffb81f5afa4d4e382f3a0b7eba5b1d86052 Mon Sep 17 00:00:00 2001 From: wlswo Date: Tue, 13 Feb 2024 23:08:38 +0900 Subject: [PATCH] =?UTF-8?q?feat=20:=20=EB=B0=B0=EB=84=88=20DTO=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/java/com/moco/moco/dto/BannerDto.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/java/com/moco/moco/dto/BannerDto.java b/src/main/java/com/moco/moco/dto/BannerDto.java index c2456f2..e2d0b2c 100644 --- a/src/main/java/com/moco/moco/dto/BannerDto.java +++ b/src/main/java/com/moco/moco/dto/BannerDto.java @@ -55,8 +55,10 @@ public Response(Banner banner) { this.id = banner.getId(); this.ordering = banner.getOrdering(); this.memo = banner.getMemo(); + this.title = banner.getTitle(); this.content = banner.getContent(); this.description = banner.getDescription(); + this.backgroundColor = banner.getBackgroundColor(); this.imageLink = banner.getImageLink(); this.expose = banner.isExpose(); }