zhou zhou
1 天以前 89847f0c5a5d37e5a720afd32cdd7e4d9ead664b
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
package com.vincent.rsf.server.ai.dto;
 
import lombok.Builder;
import lombok.Data;
 
@Data
@Builder
public class AiParamValidateResultDto {
 
    private String status;
 
    private String message;
 
    private String detail;
 
    private String model;
 
    private Long elapsedMs;
 
    private String validatedAt;
 
    private String requestUrl;
 
    private String requestBody;
 
    private Integer responseStatus;
 
    private String responseBody;
}