潘志宝
2025-06-03 e83cc18f017efcca5c2d52bb84b3c11f226ae945
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
package com.iailab.module.ai.controller.admin.questionparamsetting.vo;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.*;
 
@Schema(description = "管理后台 - 大模型问题设置参数 Response VO")
@Data
public class QuestionParamSettingRespVO {
 
    @Schema(description = "id", requiredMode = Schema.RequiredMode.REQUIRED, example = "23197")
    private String id;
 
    @Schema(description = "问题模板id", requiredMode = Schema.RequiredMode.REQUIRED, example = "2283")
    private String templateId;
 
    @Schema(description = "key")
    private String settingKey;
 
    @Schema(description = "参数名称", example = "iailab")
    private String settingName;
 
    @Schema(description = "参数默认值")
    private String settingValue;
 
    @Schema(description = "排序")
    private Integer sort;
 
}