feat : 분석api 개발
This commit is contained in:
parent
1ae6cadd8d
commit
988b30c7be
@ -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())
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
@ -16,7 +16,8 @@ import java.util.List;
|
||||
@NoArgsConstructor
|
||||
@AllArgsConstructor
|
||||
public class AiFeedbackDetailResponse {
|
||||
|
||||
|
||||
private Long feedbackId;
|
||||
private Long storeId;
|
||||
private String summary;
|
||||
private List<String> positivePoints;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user