2026-06-16 17:39:13 +08:00
|
|
|
package com.xuqm.bugcollect.dto;
|
2026-06-16 12:10:58 +08:00
|
|
|
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
|
|
|
|
import java.time.LocalDateTime;
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
public record IssueResponse(
|
|
|
|
|
Long id,
|
|
|
|
|
@JsonProperty("appKey") String appKey,
|
|
|
|
|
String fingerprint,
|
|
|
|
|
String type,
|
|
|
|
|
String title,
|
|
|
|
|
@JsonProperty("firstSeenAt") LocalDateTime firstSeenAt,
|
|
|
|
|
@JsonProperty("lastSeenAt") LocalDateTime lastSeenAt,
|
|
|
|
|
int count,
|
|
|
|
|
@JsonProperty("isResolved") boolean isResolved,
|
|
|
|
|
String platform,
|
|
|
|
|
@JsonProperty("appVersion") String appVersion,
|
|
|
|
|
List<IssueEventResponse> events
|
|
|
|
|
) {}
|