zhou zhou
2 天以前 691bee4229856f8bf81c2720092ecee1c9f21509
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;
}