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;
| }
|
|