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