From a2a8c15107ee6696c252a1002f8feead4404f92a Mon Sep 17 00:00:00 2001 From: chy <2463300564@qq.com> Date: Tue, 1 Jul 2025 14:30:54 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E6=95=B4=E4=BB=BB=E5=8A=A1=E6=9F=A5?= =?UTF-8?q?=E8=AF=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- internal/logic/task/task.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/logic/task/task.go b/internal/logic/task/task.go index d104374..54d72a8 100644 --- a/internal/logic/task/task.go +++ b/internal/logic/task/task.go @@ -448,7 +448,7 @@ func (s *sTask) GetTaskList(ctx context.Context, in *model.GetTaskListV2In) (out var data []model.GameTask if in.IsBound == 0 { // 未绑定游戏查询自己数据库 - err := dao.Tasks.Ctx(ctx).Where(do.Tasks{GameId: in.Gid, StoreId: in.StoreId, NetbarAcconut: in.NetBarAccount}).WithAll().WithAll().Scan(&tasks) + err := dao.Tasks.Ctx(ctx).Where(do.Tasks{GameId: in.Gid, NetbarAcconut: in.NetBarAccount}).WithAll().WithAll().Scan(&tasks) if err != nil { return nil, ecode.Fail.Sub("获取任务列表失败") }