1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| package cc.mrbird.febs.ai.res.ai;
|
| import io.swagger.annotations.ApiModel;
| import lombok.Data;
|
| /**
| * @author Administrator
| */
| @Data
| @ApiModel(value = "AiResponse", description = "参数")
| public class AiResponse {
|
| private String code;
| private String description;
| private String resContext;
| }
|
|