Files
jh-zz/actions/changes.go
2025-09-10 19:35:06 +08:00

25 lines
384 B
Go

package actions
import (
"zzman/model"
"gorm.io/gorm"
)
func RecordChanges(tx *gorm.DB, changes []model.Change) error {
if len(changes) == 0 {
return nil
}
batchSize := 500
for i := 0; i < len(changes); i += batchSize {
end := min(i+batchSize, len(changes))
batch := changes[i:end]
err := tx.Create(&batch).Error
if err != nil {
return err
}
}
return nil
}