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 }