| | |
| | | package com.linghu.model.dto; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import lombok.Data; |
| | | import lombok.NoArgsConstructor; |
| | | import lombok.AllArgsConstructor; |
| | | |
| | | import java.time.Duration; |
| | | import java.time.LocalDate; |
| | | import java.time.LocalDateTime; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | |
| | | private Integer total_users; |
| | | private Integer total_questions; |
| | | private Integer successful_users; |
| | | private Date total_duration; |
| | | private String total_duration; |
| | | private List<UserResult> results; |
| | | private String detail; |
| | | |
| | | @Data |
| | | @NoArgsConstructor |
| | |
| | | private String user_name; |
| | | private String user_email; |
| | | private String status; |
| | | private String error; |
| | | private List<QuestionResult> questions_results; |
| | | } |
| | | |
| | |
| | | private String response; |
| | | private String status; |
| | | private Integer extracted_count; |
| | | private Date timestamp; |
| | | private String timestamp; |
| | | private String error; |
| | | private List<Reference> references; |
| | | } |
| | |
| | | private String title; |
| | | private String url; |
| | | private String domain; |
| | | @JsonFormat(pattern = "yyyy/MM/dd") |
| | | private LocalDate publish_time; |
| | | private String platform_name; |
| | | } |
| | | } |