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; }