From a2e0ed9d8131367c5d1d5e3861ee77fd8943a421 Mon Sep 17 00:00:00 2001 From: majun <3060162534@qq.com> Date: Wed, 18 Dec 2024 14:30:50 +0800 Subject: [PATCH] =?UTF-8?q?=E5=90=88=E5=B9=B6=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- link_homework/internal/logic/client/client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/link_homework/internal/logic/client/client.go b/link_homework/internal/logic/client/client.go index 378d3a0..f8f31ad 100644 --- a/link_homework/internal/logic/client/client.go +++ b/link_homework/internal/logic/client/client.go @@ -42,7 +42,7 @@ func (s *sClient) ClientGetHomeworkList(ctx context.Context) (homeworkList []Cli } func (s *sClient) GetHomeworkQuestion(ctx context.Context, groupId int) (questions []ClientPage.GetHomeworkQuestionRes, err error) { - err = dao.ActivityInteractiveForm.Ctx(ctx).Fields("id", "name", "content", "status", "type"). + err = dao.ActivityInteractiveForm.Ctx(ctx).Fields("id", "name", "content", "status", "type", "description"). Where("group_id", groupId).Scan(&questions) return }