From 0e7219ab1329aed8840e6e8b60486ab6cec41027 Mon Sep 17 00:00:00 2001 From: tzwang Date: Tue, 31 Oct 2023 11:09:42 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AD=98=E7=AE=97=E8=81=94=E5=8A=A8=E4=BF=AE?= =?UTF-8?q?=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Former-commit-id: a2705ef6fc5e1df59f1c83466bcb5c024464aef7 --- api/internal/storeLink/storeLink.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/internal/storeLink/storeLink.go b/api/internal/storeLink/storeLink.go index 883aa176..b60dc151 100644 --- a/api/internal/storeLink/storeLink.go +++ b/api/internal/storeLink/storeLink.go @@ -77,7 +77,7 @@ func NewStoreLink(ctx context.Context, svcCtx *svc.ServiceContext, participant * func GetParticipants(dbEngin *gorm.DB) []*models.StorelinkCenter { var participants []*models.StorelinkCenter - dbEngin.Raw("select * from storelink_center where type = 1").Scan(&participants) + dbEngin.Raw("select * from storelink_center").Scan(&participants) return participants }