Browse Source

Merge branch 'feature/bug-list' of xuyiping/kpt-tmr-group into develop

xuyiping 1 year ago
parent
commit
28141269bd
1 changed files with 1 additions and 1 deletions
  1. 1 1
      module/backend/pasture_sync_service.go

+ 1 - 1
module/backend/pasture_sync_service.go

@@ -358,7 +358,7 @@ func (s *StoreEntry) FeedFormulaDetailInsert(ctx context.Context, groupPasture *
 		})
 	}
 
-	if err := s.DB.Model(new(model.FeedTemplateDetail)).Create(res).Error; err != nil {
+	if err := s.DB.Model(new(model.FeedFormulaDetail)).Create(res).Error; err != nil {
 		return xerr.WithStack(err)
 	}
 	return nil