工业互联网平台2.0版本后端代码
houzhongjian
2025-05-29 41499fd3c28216c1526a72b10fa98eb8ffee78cb
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
package com.iailab.module.ai.controller.admin.questionparamsetting.vo;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.*;
import javax.validation.constraints.*;
 
@Schema(description = "管理后台 - 大模型问题设置参数新增/修改 Request VO")
@Data
public class QuestionParamSettingSaveReqVO {
 
    @Schema(description = "id", requiredMode = Schema.RequiredMode.REQUIRED, example = "23197")
    private String id;
 
    @Schema(description = "问题模板id", requiredMode = Schema.RequiredMode.REQUIRED, example = "2283")
    @NotEmpty(message = "问题模板id不能为空")
    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;
 
}