mirror of
https://gitee.com/ulthon/ulthon_information.git
synced 2026-03-04 00:24:29 +08:00
11 lines
145 B
PHP
11 lines
145 B
PHP
<?php
|
|
namespace app\common\model;
|
|
|
|
use app\common\traits\AutoClearCache;
|
|
use think\Model;
|
|
|
|
class Base extends Model
|
|
{
|
|
use AutoClearCache;
|
|
}
|