Agent 5 补充: - LogQueryController (issues/events/overview/funnel 查询接口) - SdkController (SDK 入库接口) - WebhookController (Webhook CRUD) - IssueService / EventService / SourceMapService / WebhookService - FunnelResponse / OverviewResponse / SourcemapUploadResponse DTOs
13 行
379 B
Java
13 行
379 B
Java
package com.xuqm.log.dto;
|
|
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
|
|
|
public record SourcemapUploadResponse(
|
|
Long id,
|
|
@JsonProperty("appKey") String appKey,
|
|
String platform,
|
|
@JsonProperty("appVersion") String appVersion,
|
|
@JsonProperty("bundleName") String bundleName,
|
|
@JsonProperty("storageKey") String storageKey
|
|
) {}
|