mirror of
https://gitee.com/wonderful-code/buildadmin
synced 2024-11-22 23:28:43 +00:00
24 lines
359 B
PHP
24 lines
359 B
PHP
<?php
|
|
|
|
namespace app\admin\model;
|
|
|
|
use think\Model;
|
|
|
|
/**
|
|
* Log
|
|
*/
|
|
class CrudLog extends Model
|
|
{
|
|
// 表名
|
|
protected $name = 'crud_log';
|
|
|
|
// 自动写入时间戳字段
|
|
protected $autoWriteTimestamp = true;
|
|
protected $updateTime = false;
|
|
|
|
protected $type = [
|
|
'table' => 'array',
|
|
'fields' => 'array',
|
|
];
|
|
|
|
} |