Skip to content

Commit

Permalink
Merge pull request #59 from kookmin-sw/feat/debug2
Browse files Browse the repository at this point in the history
fix: 필드명 수정
  • Loading branch information
KimChanJin97 authored May 10, 2024
2 parents 19f7f11 + e8d8bd5 commit c5f0d69
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ public class AnalysisInfo {
@Builder.Default
@ElementCollection
@CollectionTable(name = "ANALYSIS_INFO_FULL", joinColumns = @JoinColumn(name = "ANALYSIS_INFO_ID"))
private Map<String, String> analysisInfoFull = new HashMap<>();
private Map<String, String> analysisFull = new HashMap<>();

@Builder.Default
@ElementCollection
@CollectionTable(name = "ANALYSIS_INFO_SHORT", joinColumns = @JoinColumn(name = "ANALYSIS_INFO_ID"))
private List<String> analysisInfoShort = new ArrayList<>();
private List<String> analysisShort = new ArrayList<>();
}

0 comments on commit c5f0d69

Please sign in to comment.