zhou zhou
昨天 b05f094ac51dce91eb8c00235226d54a04658c6d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
package com.vincent.rsf.server.ai.dto;
 
import lombok.Builder;
import lombok.Data;
 
@Data
@Builder
public class AiChatTraceEventDto {
 
    private String requestId;
 
    private Long sessionId;
 
    private String traceId;
 
    private Long sequence;
 
    private String traceType;
 
    private String phase;
 
    private String status;
 
    private String title;
 
    private String content;
 
    private String toolCallId;
 
    private String toolName;
 
    private String mountName;
 
    private String inputSummary;
 
    private String outputSummary;
 
    private String errorMessage;
 
    private Long durationMs;
 
    private Long timestamp;
}