潘志宝
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 lombok.*;
import io.swagger.v3.oas.annotations.media.Schema;
import com.iailab.framework.common.pojo.PageParam;
 
@Schema(description = "管理后台 - 大模型问题设置参数分页 Request VO")
@Data
@EqualsAndHashCode(callSuper = true)
@ToString(callSuper = true)
public class QuestionParamSettingPageReqVO extends PageParam {
 
    @Schema(description = "问题模板id", 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;
 
}