21 行
627 B
Java
21 行
627 B
Java
|
|
package com.xuqm.log.dto;
|
||
|
|
|
||
|
|
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
|
||
|
|
) {}
|