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