新增了题库2、3类型1

This commit is contained in:
2024-11-07 20:58:28 +08:00
parent 58d8ca0ce6
commit 8cafd567d0
4 changed files with 84 additions and 54 deletions
+4 -4
View File
@@ -26,8 +26,8 @@ type ShareDtoForTwo struct {
// ShareDtoForThree 获取返回数据-多轮固定题型模式
type ShareDtoForThree struct {
Single *ShareDto `json:"single"` // 单选题
Multiple *ShareDto `json:"multiple"` // 多选题
Judge *ShareDto `json:"judge"` // 判断题
Qa *ShareDto `json:"qa"` // 问答题
Single *ShareDtoForTwo `json:"single"` // 单选题
Multiple *ShareDtoForTwo `json:"multiple"` // 多选题
Judge *ShareDtoForTwo `json:"judge"` // 判断题
Qa *ShareDtoForTwo `json:"qa"` // 问答题
}