增加自动清除缓存特性;

This commit is contained in:
2022-02-12 17:02:45 +08:00
parent 90bbf61b6a
commit 7d8b948543
7 changed files with 260 additions and 154 deletions

10
app/common/model/Base.php Normal file
View File

@@ -0,0 +1,10 @@
<?php
namespace app\common\model;
use app\common\traits\AutoClearCache;
use think\Model;
class Base extends Model
{
// use AutoClearCache;
}