feat : 분석api 개발

This commit is contained in:
lsh9672 2025-06-16 16:15:25 +09:00
parent 1ae6cadd8d
commit 988b30c7be
3 changed files with 5 additions and 3 deletions

View File

@ -115,6 +115,7 @@ public class AnalyticsService implements AnalyticsUseCase {
// 3. 응답 생성
AiFeedbackDetailResponse response = AiFeedbackDetailResponse.builder()
.feedbackId(aiFeedback.get().getId())
.storeId(storeId)
.summary(aiFeedback.get().getSummary())
.positivePoints(aiFeedback.get().getPositivePoints())

View File

@ -25,7 +25,7 @@ public class AiAnalysisRequest {
@Builder.Default
private Integer days = 30;
@Schema(description = "실행계획 자동 생성 여부", example = "true")
@Schema(description = "실행계획 자동 생성 여부", example = "false")
@Builder.Default
private Boolean generateActionPlan = true;
private Boolean generateActionPlan = false;
}

View File

@ -17,6 +17,7 @@ import java.util.List;
@AllArgsConstructor
public class AiFeedbackDetailResponse {
private Long feedbackId;
private Long storeId;
private String summary;
private List<String> positivePoints;