存算联动修改

Former-commit-id: a2705ef6fc5e1df59f1c83466bcb5c024464aef7
This commit is contained in:
tzwang 2023-10-31 11:09:42 +08:00
parent c88784a42d
commit 0e7219ab13
1 changed files with 1 additions and 1 deletions

View File

@ -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
}