Administrator
2025-08-20 de8b3cf7a9b22be7abcb544a53dcea7f1b340760
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
30
31
32
package cc.mrbird.febs.ai.res.ai;
 
import com.fasterxml.jackson.annotation.JsonProperty;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
/**
 * @author Administrator
 */
@Data
@ApiModel(value = "Evaluation", description = "参数")
public class Evaluation {
 
    @ApiModelProperty(value = "亮点")
    @JsonProperty("highlight")
    private String highlight;
 
 
    @ApiModelProperty(value = "建议")
    @JsonProperty("suggestion")
    private String suggestion;
 
 
    @ApiModelProperty(value = "参考答案")
    @JsonProperty("reference_answer")
    private String referenceAnswer;
 
 
    @ApiModelProperty(value = "核心知识点")
    @JsonProperty("key_knowledge")
    private String keyKnowledge;
}