mirror of
https://gitee.com/ulthon/ulthon_admin.git
synced 2026-07-01 23:42:48 +08:00
20 lines
252 B
PHP
20 lines
252 B
PHP
<?php
|
|
|
|
|
|
namespace app\admin\model;
|
|
|
|
|
|
use app\common\model\TimeModel;
|
|
|
|
class SystemQuick extends TimeModel
|
|
{
|
|
|
|
protected $deleteTime = 'delete_time';
|
|
|
|
public static $autoCache = [
|
|
[
|
|
'name' => 'welcome_list'
|
|
]
|
|
];
|
|
}
|