init
This commit is contained in:
17
app/model/SystemRequestLog.php
Normal file
17
app/model/SystemRequestLog.php
Normal file
@@ -0,0 +1,17 @@
|
||||
<?php
|
||||
namespace app\model;
|
||||
|
||||
use think\Model;
|
||||
|
||||
class SystemRequestLog extends Model
|
||||
{
|
||||
protected $table = 'system_request_logs';
|
||||
|
||||
protected $autoWriteTimestamp = 'datetime';
|
||||
protected $createTime = 'create_time';
|
||||
protected $updateTime = false;
|
||||
|
||||
protected $type = [
|
||||
'params' => 'json',
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user