Skip to content

Commit

Permalink
hotfix: MapStruct 작동하도록 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
ori0o0p committed Aug 25, 2024
1 parent 121cf4b commit 5ed11b8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
package com.example.whopper.domain.feedback;

import lombok.Builder;
import lombok.Getter;
import org.springframework.data.annotation.Id;
import org.springframework.data.mongodb.core.mapping.Document;

@Getter
@Builder
@Document(collection = "feedback_repo")
class FeedbackEntity {
@Id
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
package com.example.whopper.domain.feedback;

import com.example.whopper.interfaces.feedback.dto.FeedbackElementDto;
import lombok.Builder;

@Builder
public record FeedbackModel(
String id,
String comment,
Expand Down

0 comments on commit 5ed11b8

Please sign in to comment.