This commit is contained in:
2026-07-29 10:40:52 +08:00
parent b7ad3fda49
commit 7c89d13f81
12 changed files with 654 additions and 1 deletions
+5
View File
@@ -46,4 +46,9 @@ class Videos extends Model
{
return $this->hasMany(VideoParts::class, "bvid", "bvid");
}
public function ocr_records(): \Illuminate\Database\Eloquent\Relations\HasMany
{
return $this->hasMany(VideoOcrRecords::class, "video_bvid", "bvid");
}
}