1
16 小时以前 b2deb1cc93b3d2c3fb9dc795e3589e1c62329a8f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.vincent.rsf.server.ai.dto;
 
import lombok.Builder;
import lombok.Data;
 
@Data
@Builder
public class AiMcpConnectivityTestDto {
 
    private Long mountId;
 
    private String mountName;
 
    private String healthStatus;
 
    private String message;
 
    private Long initElapsedMs;
 
    private Integer toolCount;
 
    private String testedAt;
}