chuweiqiang hace 1 año
padre
commit
861338ab4b

+ 4 - 5
.idea/workspace.xml

@@ -3,10 +3,9 @@
   <component name="ChangeListManager">
     <list default="true" id="1a36929e-c054-4875-a943-593a74e55fa4" name="Default Changelist" comment="">
       <change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
+      <change beforePath="$PROJECT_DIR$/application/api/controller/General.php" beforeDir="false" afterPath="$PROJECT_DIR$/application/api/controller/General.php" afterDir="false" />
       <change beforePath="$PROJECT_DIR$/application/api/controller/Message.php" beforeDir="false" afterPath="$PROJECT_DIR$/application/api/controller/Message.php" afterDir="false" />
-      <change beforePath="$PROJECT_DIR$/runtime/cache/4c/d9aaff68a897261d9d4e25ac10435f.php" beforeDir="false" afterPath="$PROJECT_DIR$/runtime/cache/4c/d9aaff68a897261d9d4e25ac10435f.php" afterDir="false" />
       <change beforePath="$PROJECT_DIR$/runtime/log/single.log" beforeDir="false" afterPath="$PROJECT_DIR$/runtime/log/single.log" afterDir="false" />
-      <change beforePath="$PROJECT_DIR$/runtime/log/single_error.log" beforeDir="false" afterPath="$PROJECT_DIR$/runtime/log/single_error.log" afterDir="false" />
       <change beforePath="$PROJECT_DIR$/runtime/log/single_sql.log" beforeDir="false" afterPath="$PROJECT_DIR$/runtime/log/single_sql.log" afterDir="false" />
     </list>
     <option name="SHOW_DIALOG" value="false" />
@@ -534,7 +533,7 @@
       <workItem from="1706151662573" duration="2897000" />
       <workItem from="1706229343075" duration="6741000" />
       <workItem from="1706315524176" duration="13430000" />
-      <workItem from="1706488690850" duration="14896000" />
+      <workItem from="1706488690850" duration="15314000" />
     </task>
     <servers />
   </component>
@@ -656,10 +655,10 @@
     </option>
   </component>
   <component name="WindowStateProjectService">
-    <state x="948" y="400" key="#com.jetbrains.php.actions.copyPaste.importReferences.PhpImportReferencesDialog" timestamp="1704676580475">
+    <state x="948" y="400" key="#com.jetbrains.php.actions.copyPaste.importReferences.PhpImportReferencesDialog" timestamp="1706516640264">
       <screen x="0" y="0" width="2194" height="1194" />
     </state>
-    <state x="948" y="400" key="#com.jetbrains.php.actions.copyPaste.importReferences.PhpImportReferencesDialog/0.0.2194.1194@0.0.2194.1194" timestamp="1704676580475" />
+    <state x="948" y="400" key="#com.jetbrains.php.actions.copyPaste.importReferences.PhpImportReferencesDialog/0.0.2194.1194@0.0.2194.1194" timestamp="1706516640264" />
     <state x="1215" y="438" key="FileChooserDialogImpl" timestamp="1704940754755">
       <screen x="0" y="0" width="2194" height="1194" />
     </state>

+ 32 - 0
application/api/controller/General.php

@@ -3,6 +3,7 @@ namespace app\api\controller;
 use app\common\model\PlatformSwitch;
 use app\common\model\UserSearch;
 use app\common\model\UserTrack;
+use think\Db;
 
 /**
  * @title 其他接口(需要登录状态)【多模块共用】
@@ -17,6 +18,7 @@ class General extends Base
         'switchSet',
         'batchDelSwitch',
         'delTrack',
+        'label'
     ];
     public function initialize()
     {
@@ -135,5 +137,35 @@ class General extends Base
     }
 
 
+    /**
+     * @title 用户绑定智能标签
+     * @desc  用户绑定智能标签
+     * @author  qc
+     * @url /api/General/label
+     * @method POST
+     * @param  name:label type:varchar default:-- desc:标签 多个标签用,隔开
+     */
+    public function label(){
+        $data = input();
+        $uid = $this->user_id;
+        $label = explode(',',$data['label']);
+        foreach ($label as $k => $v){
+            $find = Db::name('user_label')->where('user_id',$uid)->where('label',$v)->find();
+            if($find){
+                Db::name('user_label')->where('user_id',$uid)->where('label',$v)->setInc('num');
+            }else{
+                $arr = [
+                    'user_id' => $uid,
+                    'label' => $v,
+                    'num' => 1,
+                    'create_at' => date('Y-m-d H:i:s'),
+                ];
+                Db::name('user_label')->insert($arr);
+            }
+        }
+        $this->success('操作成功');
+    }
+
+
 
 }

+ 0 - 32
application/api/controller/Message.php

@@ -14,11 +14,6 @@ use think\Db;
 class Message extends Base
 {
 
-    // 需要登录的
-    protected $need_login = [
-        'label',
-    ];
-
     public function initialize()
     {
         parent::initialize();
@@ -157,33 +152,6 @@ class Message extends Base
         $this->success('ok',['list'=>$list]);
     }
 
-    /**
-     * @title 用户绑定智能标签
-     * @desc  用户绑定智能标签
-     * @author  qc
-     * @url /api/Message/label
-     * @method POST
-     */
-    public function label(){
-        $data = input();
-        $uid = $this->user_id;
-        $label = explode(',',$data['label']);
-        foreach ($label as $k => $v){
-            $find = Db::name('user_label')->where('user_id',$uid)->where('label',$v)->find();
-            if($find){
-                Db::name('user_label')->where('user_id',$uid)->where('label',$v)->setInc('num');
-            }else{
-                $arr = [
-                    'user_id' => $uid,
-                    'label' => $v,
-                    'num' => 1,
-                    'create_at' => date('Y-m-d H:i:s'),
-                ];
-                Db::name('user_label')->insert($arr);
-            }
-        }
-        $this->success('操作成功');
-    }
 
 
 

+ 232 - 0
runtime/log/single.log

@@ -61273,3 +61273,235 @@
   'label' => 'SOA,AP,CP',
 )
 [ info ] [ DB ] INIT mysql
+---------------------------------------------------------------
+
+[2024-01-29T16:18:31+08:00] 127.0.0.1 POST gaoyx.com/api/Message/label
+[运行时间:1.344609s] [吞吐率:0.74req/s] [内存消耗:5,673.47kb] [文件加载:156]
+[ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
+[ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
+[ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
+[ info ] [ ROUTE ] array (
+)
+[ info ] [ HEADER ] array (
+  'content-length' => '169',
+  'content-type' => 'multipart/form-data; boundary=--------------------------717118989027619047864804',
+  'host' => 'gaoyx.com',
+  'connection' => 'keep-alive',
+  'accept-encoding' => 'gzip, deflate, br',
+  'accept' => '*/*',
+  'authorization' => 'eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1aWQiOjQ3OSwiaXNzIjoiaHR0cHM6XC9cL3phaW4uY29tIiwiYXVkIjoiaHR0cHM6XC9cL3phaW4uY29tIiwiaWF0IjoxNzA2NDk4NDQ2LCJuYmYiOjE3MDY0OTg0NDYsImV4cCI6MTcyMDg5ODQ0NiwiZmFjaWxpdHlfY29kZSI6ImRtbDJiMVl5TVRFNFFUTXhNVEk9IiwibG9naW5fdHlwZSI6IjEifQ.bKjQxHSo3xMKkLO7NwMw0LiH-lusRhMop291Sgsx2H0',
+  'cache-control' => 'no-cache',
+  'user-agent' => 'PostmanRuntime-ApipostRuntime/1.1.0',
+)
+[ info ] [ PARAM ] array (
+  'label' => 'SOA,AP,CP',
+)
+[ info ] [ DB ] INIT mysql
+---------------------------------------------------------------
+
+[2024-01-29T16:18:43+08:00] 127.0.0.1 POST gaoyx.com/api/Message/label
+[运行时间:0.699995s] [吞吐率:1.43req/s] [内存消耗:5,665.63kb] [文件加载:156]
+[ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
+[ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
+[ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
+[ info ] [ ROUTE ] array (
+)
+[ info ] [ HEADER ] array (
+  'content-length' => '169',
+  'content-type' => 'multipart/form-data; boundary=--------------------------850544779039015861213808',
+  'host' => 'gaoyx.com',
+  'connection' => 'keep-alive',
+  'accept-encoding' => 'gzip, deflate, br',
+  'accept' => '*/*',
+  'authorization' => 'eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1aWQiOjQ3OSwiaXNzIjoiaHR0cHM6XC9cL3phaW4uY29tIiwiYXVkIjoiaHR0cHM6XC9cL3phaW4uY29tIiwiaWF0IjoxNzA2NDk4NDQ2LCJuYmYiOjE3MDY0OTg0NDYsImV4cCI6MTcyMDg5ODQ0NiwiZmFjaWxpdHlfY29kZSI6ImRtbDJiMVl5TVRFNFFUTXhNVEk9IiwibG9naW5fdHlwZSI6IjEifQ.bKjQxHSo3xMKkLO7NwMw0LiH-lusRhMop291Sgsx2H0',
+  'cache-control' => 'no-cache',
+  'user-agent' => 'PostmanRuntime-ApipostRuntime/1.1.0',
+)
+[ info ] [ PARAM ] array (
+  'label' => 'SOA,AP,CP',
+)
+[ info ] [ DB ] INIT mysql
+---------------------------------------------------------------
+
+[2024-01-29T16:21:04+08:00] 127.0.0.1 GET gaoyx.com/apidoc/config
+[运行时间:0.042394s] [吞吐率:23.59req/s] [内存消耗:2,380.86kb] [文件加载:130]
+[ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
+[ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
+[ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
+[ info ] [ ROUTE ] array (
+  'rule' => 'apidoc/config',
+  'route' => '\\hg\\apidoc\\Controller@getConfig',
+  'option' => 
+  array (
+    'merge_rule_regex' => false,
+  ),
+  'var' => 
+  array (
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'PHPSESSID=f077aud00ehqisic7jte5e6rkd; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtBLtVU67PJoCuSO9bpGpJNs%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtPsjYsZe4iHWycPSwIjOJLvrM9_lGpCGJfQxRy-ctMELcCuz3fl4GN4MNoV9EmMaiBpfFW2oQv1gWnZMexYcsQ5mN78MzkiDOxWTQityaS5BuIauHF0_s9N9yNI66lZUsMP0CvYKnqy8h8MOOV8sYUVgJEJHyVE6QR0TvjzJjZok',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br',
+  'referer' => 'https://gaoyx.com/apidoc/?appKey=V1.0',
+  'sec-fetch-dest' => 'empty',
+  'sec-fetch-mode' => 'cors',
+  'sec-fetch-site' => 'same-origin',
+  'sec-ch-ua-platform' => '"Windows"',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
+  'sec-ch-ua-mobile' => '?0',
+  'accept' => 'application/json, text/plain, */*',
+  'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
+  'connection' => 'keep-alive',
+  'host' => 'gaoyx.com',
+  'content-length' => '',
+  'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+---------------------------------------------------------------
+
+[2024-01-29T16:21:05+08:00] 127.0.0.1 GET gaoyx.com/apidoc/data?appKey=V1.0&version=V1.0&cacheFileName=&reload=false
+[运行时间:0.129150s] [吞吐率:7.74req/s] [内存消耗:7,834.53kb] [文件加载:169]
+[ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
+[ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
+[ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
+[ info ] [ ROUTE ] array (
+  'rule' => 'apidoc/data',
+  'route' => '\\hg\\apidoc\\Controller@getList',
+  'option' => 
+  array (
+    'merge_rule_regex' => false,
+  ),
+  'var' => 
+  array (
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'PHPSESSID=f077aud00ehqisic7jte5e6rkd; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtBLtVU67PJoCuSO9bpGpJNs%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtPsjYsZe4iHWycPSwIjOJLvrM9_lGpCGJfQxRy-ctMELcCuz3fl4GN4MNoV9EmMaiBpfFW2oQv1gWnZMexYcsQ5mN78MzkiDOxWTQityaS5BuIauHF0_s9N9yNI66lZUsMP0CvYKnqy8h8MOOV8sYUVgJEJHyVE6QR0TvjzJjZok',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br',
+  'referer' => 'https://gaoyx.com/apidoc/?appKey=V1.0',
+  'sec-fetch-dest' => 'empty',
+  'sec-fetch-mode' => 'cors',
+  'sec-fetch-site' => 'same-origin',
+  'sec-ch-ua-platform' => '"Windows"',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
+  'sec-ch-ua-mobile' => '?0',
+  'accept' => 'application/json, text/plain, */*',
+  'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
+  'connection' => 'keep-alive',
+  'host' => 'gaoyx.com',
+  'content-length' => '',
+  'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+  'appKey' => 'V1.0',
+  'version' => 'V1.0',
+  'cacheFileName' => '',
+  'reload' => 'false',
+)
+---------------------------------------------------------------
+
+[2024-01-29T16:22:07+08:00] 127.0.0.1 GET gaoyx.com/apidoc/config
+[运行时间:0.038754s] [吞吐率:25.80req/s] [内存消耗:2,380.86kb] [文件加载:130]
+[ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
+[ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
+[ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
+[ info ] [ ROUTE ] array (
+  'rule' => 'apidoc/config',
+  'route' => '\\hg\\apidoc\\Controller@getConfig',
+  'option' => 
+  array (
+    'merge_rule_regex' => false,
+  ),
+  'var' => 
+  array (
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'PHPSESSID=f077aud00ehqisic7jte5e6rkd; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtBLtVU67PJoCuSO9bpGpJNs%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtPsjYsZe4iHWycPSwIjOJLvrM9_lGpCGJfQxRy-ctMELcCuz3fl4GN4MNoV9EmMaiBpfFW2oQv1gWnZMexYcsQ5mN78MzkiDOxWTQityaS5BuIauHF0_s9N9yNI66lZUsMP0CvYKnqy8h8MOOV8sYUVgJEJHyVE6QR0TvjzJjZok',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br',
+  'referer' => 'https://gaoyx.com/apidoc/?appKey=V1.0',
+  'sec-fetch-dest' => 'empty',
+  'sec-fetch-mode' => 'cors',
+  'sec-fetch-site' => 'same-origin',
+  'sec-ch-ua-platform' => '"Windows"',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
+  'sec-ch-ua-mobile' => '?0',
+  'accept' => 'application/json, text/plain, */*',
+  'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
+  'connection' => 'keep-alive',
+  'host' => 'gaoyx.com',
+  'content-length' => '',
+  'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+---------------------------------------------------------------
+
+[2024-01-29T16:22:07+08:00] 127.0.0.1 GET gaoyx.com/apidoc/data?appKey=V1.0&version=V1.0&cacheFileName=&reload=false
+[运行时间:0.108528s] [吞吐率:9.21req/s] [内存消耗:7,834.53kb] [文件加载:169]
+[ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
+[ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
+[ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
+[ info ] [ ROUTE ] array (
+  'rule' => 'apidoc/data',
+  'route' => '\\hg\\apidoc\\Controller@getList',
+  'option' => 
+  array (
+    'merge_rule_regex' => false,
+  ),
+  'var' => 
+  array (
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'PHPSESSID=f077aud00ehqisic7jte5e6rkd; SECKEY_ABVK=QwvZt/ttjO38thXx+fSrtBLtVU67PJoCuSO9bpGpJNs%3D; BMAP_SECKEY=QwvZt_ttjO38thXx-fSrtPsjYsZe4iHWycPSwIjOJLvrM9_lGpCGJfQxRy-ctMELcCuz3fl4GN4MNoV9EmMaiBpfFW2oQv1gWnZMexYcsQ5mN78MzkiDOxWTQityaS5BuIauHF0_s9N9yNI66lZUsMP0CvYKnqy8h8MOOV8sYUVgJEJHyVE6QR0TvjzJjZok',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br',
+  'referer' => 'https://gaoyx.com/apidoc/?appKey=V1.0',
+  'sec-fetch-dest' => 'empty',
+  'sec-fetch-mode' => 'cors',
+  'sec-fetch-site' => 'same-origin',
+  'sec-ch-ua-platform' => '"Windows"',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
+  'sec-ch-ua-mobile' => '?0',
+  'accept' => 'application/json, text/plain, */*',
+  'sec-ch-ua' => '"Google Chrome";v="119", "Chromium";v="119", "Not?A_Brand";v="24"',
+  'connection' => 'keep-alive',
+  'host' => 'gaoyx.com',
+  'content-length' => '',
+  'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+  'appKey' => 'V1.0',
+  'version' => 'V1.0',
+  'cacheFileName' => '',
+  'reload' => 'false',
+)
+---------------------------------------------------------------
+
+[2024-01-29T16:25:27+08:00] 127.0.0.1 POST gaoyx.com/api/General/label
+[运行时间:1.649290s] [吞吐率:0.61req/s] [内存消耗:5,663.91kb] [文件加载:156]
+[ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/zh-cn.php
+[ info ] [ LANG ] D:\project\gyx\gaoyixia\vendor\zoujingli\think-library\src/lang/en-us.php
+[ info ] [ LANG ] D:\project\gyx\gaoyixia\thinkphp\lang\zh-cn.php
+[ info ] [ ROUTE ] array (
+)
+[ info ] [ HEADER ] array (
+  'content-length' => '169',
+  'content-type' => 'multipart/form-data; boundary=--------------------------744794756031136194456196',
+  'host' => 'gaoyx.com',
+  'connection' => 'keep-alive',
+  'accept-encoding' => 'gzip, deflate, br',
+  'accept' => '*/*',
+  'authorization' => 'eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1aWQiOjQ3OSwiaXNzIjoiaHR0cHM6XC9cL3phaW4uY29tIiwiYXVkIjoiaHR0cHM6XC9cL3phaW4uY29tIiwiaWF0IjoxNzA2NDk4NDQ2LCJuYmYiOjE3MDY0OTg0NDYsImV4cCI6MTcyMDg5ODQ0NiwiZmFjaWxpdHlfY29kZSI6ImRtbDJiMVl5TVRFNFFUTXhNVEk9IiwibG9naW5fdHlwZSI6IjEifQ.bKjQxHSo3xMKkLO7NwMw0LiH-lusRhMop291Sgsx2H0',
+  'cache-control' => 'no-cache',
+  'user-agent' => 'PostmanRuntime-ApipostRuntime/1.1.0',
+)
+[ info ] [ PARAM ] array (
+  'label' => 'SOA,AP,CP',
+)
+[ info ] [ DB ] INIT mysql

+ 46 - 0
runtime/log/single_sql.log

@@ -13650,3 +13650,49 @@
 [ sql ] [ SQL ] SELECT * FROM `dd_store_member` WHERE  `id` = 479 LIMIT 1 [ RunTime:0.039965s ]
 [ sql ] [ SQL ] SHOW COLUMNS FROM `dd_user_label` [ RunTime:0.061449s ]
 [ sql ] [ SQL ] SELECT * FROM `dd_user_label` WHERE  `user_id` = 479  AND `label` = 'SOA' LIMIT 1 [ RunTime:0.064411s ]
+---------------------------------------------------------------
+
+[2024-01-29T16:18:31+08:00] 127.0.0.1 POST gaoyx.com/api/Message/label
+[ sql ] [ DB ] CONNECT:[ UseTime:0.071686s ] mysql:host=182.40.104.187;port=3306;dbname=gaoyixia_hdlkeji;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `dd_store_member` [ RunTime:0.039052s ]
+[ sql ] [ SQL ] SELECT * FROM `dd_store_member` WHERE  `id` = 479 LIMIT 1 [ RunTime:0.063054s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `dd_system_config` [ RunTime:0.040772s ]
+[ sql ] [ SQL ] SELECT `name`,`value` FROM `dd_system_config` [ RunTime:0.585640s ]
+[ sql ] [ SQL ] SELECT * FROM `dd_store_member` WHERE  `id` = 479 LIMIT 1 [ RunTime:0.042324s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `dd_user_label` [ RunTime:0.060606s ]
+[ sql ] [ SQL ] SELECT * FROM `dd_user_label` WHERE  `user_id` = 479  AND `label` = 'SOA' LIMIT 1 [ RunTime:0.062953s ]
+[ sql ] [ SQL ] UPDATE `dd_user_label`  SET `num` = `num` + 1  WHERE  `user_id` = 479  AND `label` = 'SOA' [ RunTime:0.068414s ]
+[ sql ] [ SQL ] SELECT * FROM `dd_user_label` WHERE  `user_id` = 479  AND `label` = 'AP' LIMIT 1 [ RunTime:0.056783s ]
+[ sql ] [ SQL ] UPDATE `dd_user_label`  SET `num` = `num` + 1  WHERE  `user_id` = 479  AND `label` = 'AP' [ RunTime:0.062972s ]
+[ sql ] [ SQL ] SELECT * FROM `dd_user_label` WHERE  `user_id` = 479  AND `label` = 'CP' LIMIT 1 [ RunTime:0.063034s ]
+[ sql ] [ SQL ] UPDATE `dd_user_label`  SET `num` = `num` + 1  WHERE  `user_id` = 479  AND `label` = 'CP' [ RunTime:0.063782s ]
+---------------------------------------------------------------
+
+[2024-01-29T16:18:43+08:00] 127.0.0.1 POST gaoyx.com/api/Message/label
+[ sql ] [ DB ] CONNECT:[ UseTime:0.068914s ] mysql:host=182.40.104.187;port=3306;dbname=gaoyixia_hdlkeji;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `dd_store_member` [ RunTime:0.044159s ]
+[ sql ] [ SQL ] SELECT * FROM `dd_store_member` WHERE  `id` = 479 LIMIT 1 [ RunTime:0.060692s ]
+[ sql ] [ SQL ] SELECT * FROM `dd_store_member` WHERE  `id` = 479 LIMIT 1 [ RunTime:0.046907s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `dd_user_label` [ RunTime:0.037791s ]
+[ sql ] [ SQL ] SELECT * FROM `dd_user_label` WHERE  `user_id` = 479  AND `label` = 'SOA' LIMIT 1 [ RunTime:0.081374s ]
+[ sql ] [ SQL ] UPDATE `dd_user_label`  SET `num` = `num` + 1  WHERE  `user_id` = 479  AND `label` = 'SOA' [ RunTime:0.048657s ]
+[ sql ] [ SQL ] SELECT * FROM `dd_user_label` WHERE  `user_id` = 479  AND `label` = 'AP' LIMIT 1 [ RunTime:0.060343s ]
+[ sql ] [ SQL ] UPDATE `dd_user_label`  SET `num` = `num` + 1  WHERE  `user_id` = 479  AND `label` = 'AP' [ RunTime:0.057798s ]
+[ sql ] [ SQL ] SELECT * FROM `dd_user_label` WHERE  `user_id` = 479  AND `label` = 'CP' LIMIT 1 [ RunTime:0.059306s ]
+[ sql ] [ SQL ] UPDATE `dd_user_label`  SET `num` = `num` + 1  WHERE  `user_id` = 479  AND `label` = 'CP' [ RunTime:0.058963s ]
+---------------------------------------------------------------
+
+[2024-01-29T16:25:27+08:00] 127.0.0.1 POST gaoyx.com/api/General/label
+[ sql ] [ DB ] CONNECT:[ UseTime:0.072761s ] mysql:host=182.40.104.187;port=3306;dbname=gaoyixia_hdlkeji;charset=utf8mb4
+[ sql ] [ SQL ] SHOW COLUMNS FROM `dd_store_member` [ RunTime:0.050080s ]
+[ sql ] [ SQL ] SELECT * FROM `dd_store_member` WHERE  `id` = 479 LIMIT 1 [ RunTime:0.066617s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `dd_system_config` [ RunTime:0.045153s ]
+[ sql ] [ SQL ] SELECT `name`,`value` FROM `dd_system_config` [ RunTime:0.740128s ]
+[ sql ] [ SQL ] SELECT * FROM `dd_store_member` WHERE  `id` = 479 LIMIT 1 [ RunTime:0.045773s ]
+[ sql ] [ SQL ] SHOW COLUMNS FROM `dd_user_label` [ RunTime:0.152386s ]
+[ sql ] [ SQL ] SELECT * FROM `dd_user_label` WHERE  `user_id` = 479  AND `label` = 'SOA' LIMIT 1 [ RunTime:0.068395s ]
+[ sql ] [ SQL ] UPDATE `dd_user_label`  SET `num` = `num` + 1  WHERE  `user_id` = 479  AND `label` = 'SOA' [ RunTime:0.062484s ]
+[ sql ] [ SQL ] SELECT * FROM `dd_user_label` WHERE  `user_id` = 479  AND `label` = 'AP' LIMIT 1 [ RunTime:0.069778s ]
+[ sql ] [ SQL ] UPDATE `dd_user_label`  SET `num` = `num` + 1  WHERE  `user_id` = 479  AND `label` = 'AP' [ RunTime:0.065847s ]
+[ sql ] [ SQL ] SELECT * FROM `dd_user_label` WHERE  `user_id` = 479  AND `label` = 'CP' LIMIT 1 [ RunTime:0.065006s ]
+[ sql ] [ SQL ] UPDATE `dd_user_label`  SET `num` = `num` + 1  WHERE  `user_id` = 479  AND `label` = 'CP' [ RunTime:0.068920s ]