Administrator
2025-08-14 b224c081c0e21dad51f0f628d5c1fbfd4245cddd
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
33
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 = "radar_data", description = "参数")
public class RadarData {
    @ApiModelProperty(value = "问题理解")
    @JsonProperty("problem_understanding")
    private double problemUnderstanding;
 
    @ApiModelProperty(value = "表达流畅度")
    @JsonProperty("fluency")
    private double fluency;
 
    @ApiModelProperty(value = "原则体现")
    @JsonProperty("principle_adherence")
    private double principleAdherence;
 
    @ApiModelProperty(value = "语言逻辑性")
    @JsonProperty("logicality")
    private double logicality;
 
    @ApiModelProperty(value = "知识点掌握")
    @JsonProperty("knowledge_mastery")
    private double knowledgeMastery;
 
}