From f480e8aee76bff0903433be2065199ec3fcd4f8b Mon Sep 17 00:00:00 2001 From: mkm <727897186@qq.com> Date: Fri, 13 Sep 2024 13:58:39 +0800 Subject: [PATCH] =?UTF-8?q?feat(SystemStoreMenu):=20=E6=B7=BB=E5=8A=A0?= =?UTF-8?q?=E8=BD=AF=E5=88=A0=E9=99=A4=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/common/model/system_store/SystemStoreMenu.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/common/model/system_store/SystemStoreMenu.php b/app/common/model/system_store/SystemStoreMenu.php index 827a7a273..d1ecfcc07 100644 --- a/app/common/model/system_store/SystemStoreMenu.php +++ b/app/common/model/system_store/SystemStoreMenu.php @@ -16,6 +16,7 @@ namespace app\common\model\system_store; use app\common\model\BaseModel; +use think\model\concern\SoftDelete; /** @@ -25,7 +26,8 @@ use app\common\model\BaseModel; */ class SystemStoreMenu extends BaseModel { - + use SoftDelete; + protected $deleteTime = 'delete_time'; }