更新
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
namespace app\model;
|
||||
|
||||
use think\Model;
|
||||
|
||||
class AiModel extends Model
|
||||
{
|
||||
protected $name = 'ai_models';
|
||||
protected $autoWriteTimestamp = true;
|
||||
protected $createTime = 'created_at';
|
||||
protected $updateTime = 'updated_at';
|
||||
|
||||
protected $type = [
|
||||
'extra_config' => 'json',
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user