This commit is contained in:
2026-08-05 15:56:08 +08:00
parent 01729b1e0b
commit 2d9e2376b6
106 changed files with 10007 additions and 253 deletions
+17
View File
@@ -0,0 +1,17 @@
<?php
namespace app\model;
use think\Model;
class VideoCharacter extends Model
{
protected $name = 'video_characters';
protected $autoWriteTimestamp = true;
protected $createTime = 'created_at';
protected $updateTime = 'updated_at';
protected $type = [
'is_locked' => 'boolean',
];
}