批量更新租户规则

This commit is contained in:
2026-03-09 23:00:20 +08:00
parent e09b4c639c
commit e27cc8f457
45 changed files with 579 additions and 314 deletions
@@ -3,7 +3,7 @@
namespace app\admin\controller\OperationLog;
use think\facade\Request;
use app\model\OperationLog;
use app\model\System\OperationLog;
use app\service\JwtService;
/**
@@ -33,6 +33,7 @@ class OperationLogger
$userId = $userInfo['id'] ?? 0;
$userAccount = $userInfo['account'] ?? '';
$userName = $userInfo['name'] ?? '';
$tid = $userInfo['tid'] ?? ($userInfo['tid'] ?? 0);
if (empty($requestData)) {
$requestData = Request::param();
@@ -49,6 +50,7 @@ class OperationLogger
'user_id' => $userId,
'user_account' => $userAccount,
'user_name' => $userName,
'tid' => $tid,
'module' => $module,
'action' => $action,
'method' => $method,