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
31
32
33
34
35
| package com.iailab.module.ai.api.questionTemplate.dto;
|
| import lombok.*;
|
| import java.io.Serializable;
|
| @Data
| public class QuestionParamSettingDO implements Serializable {
|
| /**
| * id
| */
| private String id;
| /**
| * 问题模板id
| */
| private String templateId;
| /**
| * key
| */
| private String settingKey;
| /**
| * 参数名称
| */
| private String settingName;
| /**
| * 参数默认值
| */
| private String settingValue;
| /**
| * 排序
| */
| private Integer sort;
|
| }
|
|