90 changed files with 159223 additions and 21356 deletions
@ -0,0 +1,144 @@ |
|||
<?php |
|||
declare (strict_types=1); |
|||
|
|||
/** |
|||
* Created by 安徽云掌. |
|||
* User: 云掌.帮德 |
|||
* Date: 2020/3/8 22:30 |
|||
* Desc: 行为日志类 |
|||
*/ |
|||
|
|||
namespace app\api\controller; |
|||
|
|||
use think\App; |
|||
|
|||
class AdData extends Common |
|||
{ |
|||
public $model = null; |
|||
|
|||
public function __construct(App $app) |
|||
{ |
|||
parent::__construct($app); |
|||
$this->model = new \app\api\model\AdData(); |
|||
} |
|||
|
|||
/** |
|||
* 显示资源列表 |
|||
* |
|||
* @return \think\Response |
|||
*/ |
|||
public function index() |
|||
{ |
|||
//接受参数 |
|||
$_get = $this->request->get(); |
|||
|
|||
//数据处理 |
|||
$_data = $this->model->index(); |
|||
|
|||
//返回数据 |
|||
return send_http_status($_data); |
|||
} |
|||
|
|||
/** |
|||
* 添加数据 |
|||
* @return \think\Response |
|||
* @Log [sys_name] 在 [sys_time] 创建了广告:[name] |
|||
*/ |
|||
public function add() |
|||
{ |
|||
//接收参数 |
|||
$_post = $this->request->post(); |
|||
|
|||
$date_arr = $_post['datetime']; |
|||
if(count($date_arr)>0){ |
|||
// var_dump($date_arr[0]); |
|||
//时间字符串转化成时间戳 |
|||
if(isset($date_arr[0])){ |
|||
$_post['start_time'] = strtotime($date_arr[0]); |
|||
} |
|||
|
|||
if(isset($date_arr[1])){ |
|||
$_post['end_time'] = strtotime($date_arr[1].' 23:59:59'); |
|||
} |
|||
|
|||
} |
|||
// var_dump($_post);? |
|||
|
|||
//验证参数 |
|||
validate(\app\api\validate\AdData::class)->check($_post); |
|||
|
|||
//处理并返回参数 |
|||
$insertId = $this->model->parentAdd($_post); |
|||
|
|||
return send_http_status($insertId, $insertId ? 201 : 202); |
|||
} |
|||
|
|||
|
|||
/** |
|||
* 读取单条数据 |
|||
* @param int $id |
|||
* @return \think\Response |
|||
*/ |
|||
public function read($id = '') |
|||
{ |
|||
//验证参数 |
|||
validate(\app\api\validate\Block::class)->scene('read')->check(['id' => $id]); |
|||
|
|||
//返回数据 |
|||
return send_http_status($this->model->parentRead($id)); |
|||
} |
|||
|
|||
/** |
|||
* 保存更新的资源 |
|||
* @param \think\Request $request |
|||
* @param int $id |
|||
* @return \think\Response |
|||
* @Log [sys_name]在[sys_time]修改了广告[id]的数据 |
|||
*/ |
|||
public function edit($id = 0) |
|||
{ |
|||
|
|||
//接收参数 |
|||
$_post = $this->request->post(); |
|||
$_post['id'] = $id; //安全赋值,以免客户端没传id,修改需要id字段 |
|||
|
|||
$date_arr = $_post['datetime']; |
|||
if(count($date_arr)>0){ |
|||
//时间字符串转化成时间戳 |
|||
if(isset($date_arr[0])){ |
|||
$_post['start_time'] = strtotime($date_arr[0]); |
|||
} |
|||
|
|||
if(isset($date_arr[1])){ |
|||
$_post['end_time'] = strtotime($date_arr[1].' 23:59:59'); |
|||
} |
|||
|
|||
} |
|||
|
|||
//验证参数 |
|||
validate(\app\api\validate\AdData::class)->scene('update')->check($_post); |
|||
|
|||
//处理并返回数据 |
|||
return send_http_status('', $this->model->parentEdit($_post, $id) ? 203 : 204); |
|||
} |
|||
|
|||
|
|||
/** |
|||
* 删除指定资源 |
|||
* @Log [sys_name] 在 [sys_time] 删除了广告id:[id] |
|||
* @param int $id |
|||
* @return \think\Response |
|||
*/ |
|||
public function delete() |
|||
{ |
|||
//接收参数 |
|||
$ids = $this->request->param('id'); |
|||
|
|||
//验证参数 |
|||
validate(['ids|id' => 'require|length:1,10'])->check(['ids' => $ids]); |
|||
|
|||
//处理并返回数据 |
|||
return send_http_status('', $this->model->parentDel($ids) ? 205 : 206); |
|||
} |
|||
|
|||
} |
|||
@ -0,0 +1,105 @@ |
|||
<?php |
|||
declare (strict_types=1); |
|||
|
|||
/** |
|||
* Created by 安徽云掌. |
|||
* User: 云掌.帮德 |
|||
* Date: 2020/3/8 22:30 |
|||
* Desc: 获取权限菜单 |
|||
*/ |
|||
|
|||
namespace app\api\controller; |
|||
use think\App; |
|||
|
|||
class Cate extends CmsBase |
|||
{ |
|||
public $model = null; |
|||
|
|||
public function __construct(App $app) |
|||
{ |
|||
parent::__construct($app); |
|||
$this->model = new \app\api\model\Cate(); |
|||
} |
|||
|
|||
public function index() |
|||
{ |
|||
//接受参数 |
|||
$_get = $this->request->param(); |
|||
|
|||
//指定搜索参数 |
|||
$this->model->search_arr = ['cate_name']; |
|||
|
|||
//验证参数 |
|||
// validate(\app\api\validate\Cate::class)->scene('lists')->check($_get); |
|||
|
|||
$_data = $this->model->index(); |
|||
|
|||
//返回数据 |
|||
return send_http_status($_data); |
|||
} |
|||
|
|||
|
|||
public function add() |
|||
{ |
|||
//接收参数 |
|||
$_post = $this->request->post(); |
|||
|
|||
//验证参数 |
|||
validate(\app\api\validate\Cate::class)->check($_post); |
|||
//处理并返回参数 |
|||
$insertId = $this->model->parentAdd($_post); |
|||
return send_http_status($insertId, $insertId ? 201 : 202); |
|||
} |
|||
|
|||
public function read($id = '') |
|||
{ |
|||
//验证参数 |
|||
validate(\app\api\validate\Cate::class)->scene('read')->check(['id' => $id]); |
|||
|
|||
//返回数据 |
|||
return send_http_status($this->model->parentRead($id)); |
|||
} |
|||
|
|||
|
|||
public function edit($id = 0) |
|||
{ |
|||
//接收参数 |
|||
$_post = $this->request->post(); |
|||
$_post['id'] = $id; //安全赋值,以免客户端没传id,修改需要id字段 |
|||
|
|||
//验证参数 |
|||
validate(\app\api\validate\Cate::class)->scene('update')->check($_post); |
|||
|
|||
//处理并返回数据 |
|||
return send_http_status('', $this->model->parentEdit($_post, $id) ? 203 : 204); |
|||
} |
|||
|
|||
public function delete() |
|||
{ |
|||
//接收参数 |
|||
$ids = $this->request->param('id'); |
|||
|
|||
//验证参数 |
|||
validate(['ids|id' => 'require|length:1,100'])->check(['ids' => $ids]); |
|||
|
|||
//处理并返回数据 |
|||
return send_http_status('', $this->model->parentDel($ids) ? 205 : 206); |
|||
} |
|||
|
|||
public function status() |
|||
{ |
|||
//接收参数 |
|||
$ids = $this->request->param('id'); |
|||
$status = $this->request->param('status'); |
|||
|
|||
//验证参数 |
|||
$_rules = [ |
|||
'ids|id' => 'require|length:1,100', |
|||
'status|状态值' => 'require|number|length:1', |
|||
]; |
|||
validate($_rules)->check(['ids' => $ids, 'status' => $status]); |
|||
|
|||
//处理并返回数据 |
|||
return send_http_status('', $this->model->parentStatus($ids, $status) !== false ? 207 : 208); |
|||
} |
|||
} |
|||
@ -0,0 +1,109 @@ |
|||
<?php |
|||
declare (strict_types=1); |
|||
|
|||
/** |
|||
* Created by 安徽云掌. |
|||
* User: 云掌.帮德 |
|||
* Date: 2020/3/8 22:30 |
|||
* Desc: 获取权限菜单 |
|||
*/ |
|||
|
|||
namespace app\api\controller; |
|||
use think\App; |
|||
|
|||
class CateRelation extends CmsBase |
|||
{ |
|||
public $model = null; |
|||
|
|||
public function __construct(App $app) |
|||
{ |
|||
parent::__construct($app); |
|||
$this->model = new \app\api\model\CateRelation(); |
|||
} |
|||
|
|||
public function index() |
|||
{ |
|||
//接受参数 |
|||
$_get = $this->request->param(); |
|||
|
|||
//指定搜索参数 |
|||
$this->model->search_arr = ['idf']; |
|||
|
|||
//验证参数 |
|||
// validate(\app\api\validate\Cate::class)->scene('lists')->check($_get); |
|||
|
|||
$_data = $this->model->index(); |
|||
|
|||
//返回数据 |
|||
return send_http_status($_data); |
|||
} |
|||
|
|||
|
|||
public function add() |
|||
{ |
|||
//接收参数 |
|||
$_post = $this->request->post(); |
|||
|
|||
//验证参数 |
|||
validate(\app\api\validate\CateRelation::class)->check($_post); |
|||
//处理并返回参数 |
|||
$_post['cate_ids'] = isset($_post['cate_ids_arr']) && is_array($_post['cate_ids_arr']) ? implode(',',$_post['cate_ids_arr']):''; |
|||
unset($_post['catd_ids_arr']); |
|||
$insertId = $this->model->parentAdd($_post); |
|||
return send_http_status($insertId, $insertId ? 201 : 202); |
|||
} |
|||
|
|||
public function read($id = '') |
|||
{ |
|||
//验证参数 |
|||
// validate(\app\api\validate\Cate::class)->scene('read')->check(['id' => $id]); |
|||
|
|||
//返回数据 |
|||
return send_http_status($this->model->parentRead($id)); |
|||
} |
|||
|
|||
|
|||
public function edit($id = 0) |
|||
{ |
|||
//接收参数 |
|||
$_post = $this->request->post(); |
|||
$_post['id'] = $id; //安全赋值,以免客户端没传id,修改需要id字段 |
|||
|
|||
//验证参数 |
|||
validate(\app\api\validate\CateRelation::class)->scene('update')->check($_post); |
|||
//处理并返回参数 |
|||
$_post['cate_ids'] = isset($_post['cate_ids_arr']) && is_array($_post['cate_ids_arr']) ? implode(',',$_post['cate_ids_arr']):''; |
|||
unset($_post['catd_ids_arr']); |
|||
//处理并返回数据 |
|||
return send_http_status('', $this->model->parentEdit($_post, $id) ? 203 : 204); |
|||
} |
|||
|
|||
public function delete() |
|||
{ |
|||
//接收参数 |
|||
$ids = $this->request->param('id'); |
|||
|
|||
//验证参数 |
|||
validate(['ids|id' => 'require|length:1,100'])->check(['ids' => $ids]); |
|||
|
|||
//处理并返回数据 |
|||
return send_http_status('', $this->model->parentDel($ids) ? 205 : 206); |
|||
} |
|||
|
|||
public function status() |
|||
{ |
|||
//接收参数 |
|||
$ids = $this->request->param('id'); |
|||
$status = $this->request->param('status'); |
|||
|
|||
//验证参数 |
|||
$_rules = [ |
|||
'ids|id' => 'require|length:1,100', |
|||
'status|状态值' => 'require|number|length:1', |
|||
]; |
|||
validate($_rules)->check(['ids' => $ids, 'status' => $status]); |
|||
|
|||
//处理并返回数据 |
|||
return send_http_status('', $this->model->parentStatus($ids, $status) !== false ? 207 : 208); |
|||
} |
|||
} |
|||
@ -0,0 +1,34 @@ |
|||
<?php |
|||
declare (strict_types=1); |
|||
|
|||
namespace app\api\controller; |
|||
|
|||
use app\BaseController; |
|||
use auth\PermissAuth; |
|||
use think\App; |
|||
|
|||
use think\facade\Db; |
|||
use think\facade\Request; |
|||
use think\facade\Validate; |
|||
|
|||
class CmsBase extends Common |
|||
{ |
|||
|
|||
|
|||
public function __construct(App $app) |
|||
{ |
|||
parent::__construct($app); |
|||
//获取当前site_id 使用的模板id |
|||
$site_data = Db::name('site')->where('id',SITE_ID)->find(); |
|||
$template_id = 0; //默认0 |
|||
if($site_data){ |
|||
$template_id = $site_data['use_template']; |
|||
} |
|||
|
|||
/** |
|||
* 模板ID |
|||
*/ |
|||
defined('TEMPLATE_ID') ?: define('TEMPLATE_ID', $template_id); |
|||
} |
|||
|
|||
} |
|||
@ -0,0 +1,100 @@ |
|||
<?php |
|||
declare (strict_types=1); |
|||
|
|||
/** |
|||
* Created by 安徽云掌. |
|||
* User: 云掌.帮德 |
|||
* Date: 2020/3/8 22:30 |
|||
* Desc: 获取权限菜单 |
|||
*/ |
|||
|
|||
namespace app\api\controller; |
|||
use think\App; |
|||
|
|||
class Content extends CmsBase |
|||
{ |
|||
public $model = null; |
|||
|
|||
public function __construct(App $app) |
|||
{ |
|||
parent::__construct($app); |
|||
$this->model = new \app\api\model\Content(); |
|||
} |
|||
|
|||
public function index() |
|||
{ |
|||
//接受参数 |
|||
$_get = $this->request->param(); |
|||
|
|||
//指定搜索参数 |
|||
$this->model->search_arr = ['title']; |
|||
|
|||
$_data = $this->model->index(); |
|||
|
|||
//返回数据 |
|||
return send_http_status($_data); |
|||
} |
|||
|
|||
|
|||
public function add() |
|||
{ |
|||
//接收参数 |
|||
$_post = $this->request->post(); |
|||
|
|||
//处理并返回参数 |
|||
$insertData = $this->model->addPost($_post); |
|||
return send_http_status($insertData,$insertData['code'],200,$insertData['msg'] ); |
|||
} |
|||
|
|||
public function read($id = '') |
|||
{ |
|||
//验证参数 |
|||
validate(\app\api\validate\Cate::class)->scene('read')->check(['id' => $id]); |
|||
|
|||
//返回数据 |
|||
return send_http_status($this->model->parentRead($id)); |
|||
} |
|||
|
|||
|
|||
public function edit($id = 0) |
|||
{ |
|||
//接收参数 |
|||
$_post = $this->request->post(); |
|||
|
|||
//处理并返回参数 |
|||
$insertData = $this->model->editPost($_post,$id); |
|||
return send_http_status($insertData,$insertData['code'],200,$insertData['msg'] ); |
|||
|
|||
//处理并返回数据 |
|||
return send_http_status('', $this->model->parentEdit($_post, $id) ? 203 : 204); |
|||
} |
|||
|
|||
public function delete() |
|||
{ |
|||
//接收参数 |
|||
$ids = $this->request->param('id'); |
|||
|
|||
//验证参数 |
|||
validate(['ids|id' => 'require|length:1,100'])->check(['ids' => $ids]); |
|||
|
|||
//处理并返回数据 |
|||
return send_http_status('', $this->model->parentDel($ids) ? 205 : 206); |
|||
} |
|||
|
|||
public function status() |
|||
{ |
|||
//接收参数 |
|||
$ids = $this->request->param('id'); |
|||
$status = $this->request->param('status'); |
|||
|
|||
//验证参数 |
|||
$_rules = [ |
|||
'ids|id' => 'require|length:1,100', |
|||
'status|状态值' => 'require|number|length:1', |
|||
]; |
|||
validate($_rules)->check(['ids' => $ids, 'status' => $status]); |
|||
|
|||
//处理并返回数据 |
|||
return send_http_status('', $this->model->parentStatus($ids, $status) !== false ? 207 : 208); |
|||
} |
|||
} |
|||
@ -0,0 +1,135 @@ |
|||
<?php |
|||
declare (strict_types=1); |
|||
|
|||
/** |
|||
* Created by 安徽云掌. |
|||
* User: 云掌.帮德 |
|||
* Date: 2020/3/8 22:30 |
|||
* Desc: 行为日志类 |
|||
*/ |
|||
|
|||
namespace app\api\controller; |
|||
|
|||
use think\App; |
|||
|
|||
class Debris extends CmsBase |
|||
{ |
|||
public $model = null; |
|||
|
|||
public function __construct(App $app) |
|||
{ |
|||
parent::__construct($app); |
|||
$this->model = new \app\api\model\Debris(); |
|||
} |
|||
|
|||
/** |
|||
* 显示资源列表 |
|||
* |
|||
* @return \think\Response |
|||
*/ |
|||
public function index() |
|||
{ |
|||
//接受参数 |
|||
$_get = $this->request->get(); |
|||
|
|||
//数据处理 |
|||
$_data = $this->model->index(); |
|||
|
|||
//返回数据 |
|||
return send_http_status($_data); |
|||
} |
|||
|
|||
|
|||
/** |
|||
* 添加数据 |
|||
* @return \think\Response |
|||
* @Log [sys_name] 在 [sys_time] 添加了碎片:[name] |
|||
*/ |
|||
public function add() |
|||
{ |
|||
//接收参数 |
|||
$_post = $this->request->post(); |
|||
|
|||
//验证参数 |
|||
validate(\app\api\validate\Debris::class)->check($_post); |
|||
|
|||
//处理并返回参数 |
|||
$insertId = $this->model->parentAdd($_post); |
|||
|
|||
return send_http_status($insertId, $insertId ? 201 : 202); |
|||
} |
|||
|
|||
|
|||
/** |
|||
* 读取单条数据 |
|||
* @param int $id |
|||
* @return \think\Response |
|||
*/ |
|||
public function read($id = '') |
|||
{ |
|||
//验证参数 |
|||
validate(\app\api\validate\Block::class)->scene('read')->check(['id' => $id]); |
|||
|
|||
//返回数据 |
|||
return send_http_status($this->model->parentRead($id)); |
|||
} |
|||
|
|||
/** |
|||
* 保存更新的资源 |
|||
* @param \think\Request $request |
|||
* @param int $id |
|||
* @return \think\Response |
|||
* @Log [sys_name]在[sys_time]修改了碎片[id]的数据 |
|||
*/ |
|||
public function edit($id = 0) |
|||
{ |
|||
//接收参数 |
|||
$_post = $this->request->post(); |
|||
$_post['id'] = $id; //安全赋值,以免客户端没传id,修改需要id字段 |
|||
|
|||
//验证参数 |
|||
validate(\app\api\validate\Debris::class)->scene('update')->check($_post); |
|||
|
|||
//处理并返回数据 |
|||
return send_http_status('', $this->model->parentEdit($_post, $id) ? 203 : 204); |
|||
} |
|||
|
|||
|
|||
/** |
|||
* 删除指定资源 |
|||
* @Log [sys_name] 在 [sys_time] 删除了碎片id:[id] |
|||
* @param int $id |
|||
* @return \think\Response |
|||
*/ |
|||
public function delete() |
|||
{ |
|||
//接收参数 |
|||
$ids = $this->request->param('id'); |
|||
|
|||
//验证参数 |
|||
validate(['ids|id' => 'require|length:1,10'])->check(['ids' => $ids]); |
|||
|
|||
//处理并返回数据 |
|||
return send_http_status('', $this->model->parentDel($ids) ? 205 : 206); |
|||
} |
|||
|
|||
public function status() |
|||
{ |
|||
//接收参数 |
|||
$ids = $this->request->param('id'); |
|||
|
|||
$status = $this->request->param('status'); |
|||
|
|||
//验证参数 |
|||
$_rules = [ |
|||
'ids|id' => 'require|length:1,100', |
|||
'status|状态值' => 'require|number|length:1', |
|||
]; |
|||
validate($_rules)->check(['ids' => $ids, 'status' => $status]); |
|||
|
|||
//处理并返回数据 |
|||
return send_http_status('', $this->model->parentStatus($ids, $status) !== false ? 207 : 208); |
|||
} |
|||
|
|||
|
|||
} |
|||
@ -0,0 +1,151 @@ |
|||
<?php |
|||
declare (strict_types=1); |
|||
|
|||
/** |
|||
* Created by 安徽云掌. |
|||
* User: 云掌.帮德 |
|||
* Date: 2020/3/8 22:30 |
|||
* Desc: 行为日志类 |
|||
*/ |
|||
|
|||
namespace app\api\controller; |
|||
|
|||
use think\App; |
|||
|
|||
class Field extends Common |
|||
{ |
|||
public $model = null; |
|||
|
|||
public function __construct(App $app) |
|||
{ |
|||
parent::__construct($app); |
|||
$this->model = new \app\api\model\Field(); |
|||
} |
|||
|
|||
/** |
|||
* 显示资源列表 |
|||
* |
|||
* @return \think\Response |
|||
*/ |
|||
public function index() |
|||
{ |
|||
//接受参数 |
|||
$_get = $this->request->get(); |
|||
|
|||
//数据处理 |
|||
$_data = $this->model->index(); |
|||
|
|||
//返回数据 |
|||
return send_http_status($_data); |
|||
} |
|||
|
|||
/** |
|||
* 添加数据 |
|||
* @return \think\Response |
|||
* @Log [sys_name] 在 [sys_time] 创建了广告:[name] |
|||
*/ |
|||
public function add() |
|||
{ |
|||
//接收参数 |
|||
$_post = $this->request->post(); |
|||
|
|||
|
|||
//验证参数 |
|||
validate(\app\api\validate\Field::class)->check($_post); |
|||
|
|||
//处理并返回参数 |
|||
$insertId = $this->model->addPost($_post); |
|||
|
|||
return send_http_status($insertId, $insertId ? 201 : 202); |
|||
} |
|||
|
|||
|
|||
/** |
|||
* 读取单条数据 |
|||
* @param int $id |
|||
* @return \think\Response |
|||
*/ |
|||
public function read($id = '') |
|||
{ |
|||
//验证参数 |
|||
validate(\app\api\validate\Block::class)->scene('read')->check(['id' => $id]); |
|||
|
|||
//返回数据 |
|||
return send_http_status($this->model->parentRead($id)); |
|||
} |
|||
|
|||
/** |
|||
* 保存更新的资源 |
|||
* @param \think\Request $request |
|||
* @param int $id |
|||
* @return \think\Response |
|||
* @Log [sys_name]在[sys_time]修改了广告[id]的数据 |
|||
*/ |
|||
public function edit($id = 0) |
|||
{ |
|||
|
|||
//接收参数 |
|||
$_post = $this->request->post(); |
|||
$_post['id'] = $id; //安全赋值,以免客户端没传id,修改需要id字段 |
|||
|
|||
|
|||
//验证参数 |
|||
validate(\app\api\validate\Field::class)->scene('update')->check($_post); |
|||
|
|||
//处理并返回数据 |
|||
return send_http_status('', $this->model->editPost($id)>0 ? 203 : 204); |
|||
} |
|||
|
|||
|
|||
/** |
|||
* 删除指定资源 |
|||
* @Log [sys_name] 在 [sys_time] 删除了广告id:[id] |
|||
* @param int $id |
|||
* @return \think\Response |
|||
*/ |
|||
public function delete() |
|||
{ |
|||
//接收参数 |
|||
$ids = $this->request->param('id'); |
|||
|
|||
//验证参数 |
|||
validate(['ids|id' => 'require|length:1,10'])->check(['ids' => $ids]); |
|||
|
|||
//处理并返回数据 |
|||
return send_http_status('', $this->model->delPost($ids) ? 205 : 206); |
|||
} |
|||
|
|||
public function getCmsConfig(){ |
|||
$lists = config('cms'); |
|||
$typeData = $senddData=$origData = $sqlFieldData = []; |
|||
foreach ($lists['field_types'] as $key => $val){ |
|||
$item = []; |
|||
$item['id'] = $key; |
|||
$item['name'] = $val; |
|||
$typeData[] = $item; |
|||
} |
|||
|
|||
foreach ($lists['data_orig'] as $key => $val){ |
|||
$item = []; |
|||
$item['id'] = $key; |
|||
$item['name'] = $val; |
|||
$origData[] = $item; |
|||
} |
|||
|
|||
$dict = new \app\api\model\DictionaryType(); |
|||
$lists = $dict->getAllData(); |
|||
$sqlFieldData[] = ['id'=>'','name'=>'请选择']; |
|||
foreach ($lists as $key => $val){ |
|||
$item = []; |
|||
$item['id'] = $val['dict_symbol']; |
|||
$item['name'] = $val['dict_name']; |
|||
$sqlFieldData[] = $item; |
|||
} |
|||
|
|||
$senddData['typeData'] = $typeData; |
|||
$senddData['origData'] = $origData; |
|||
$senddData['sqlFieldData'] = $sqlFieldData; |
|||
|
|||
return send_http_status($senddData); |
|||
} |
|||
} |
|||
@ -0,0 +1,136 @@ |
|||
<?php |
|||
declare (strict_types=1); |
|||
|
|||
/** |
|||
* Created by 安徽云掌. |
|||
* User: 云掌.帮德 |
|||
* Date: 2020/3/8 22:30 |
|||
* Desc: 行为日志类 |
|||
*/ |
|||
|
|||
namespace app\api\controller; |
|||
|
|||
use think\App; |
|||
|
|||
class Link extends Common |
|||
{ |
|||
public $model = null; |
|||
|
|||
public function __construct(App $app) |
|||
{ |
|||
parent::__construct($app); |
|||
$this->model = new \app\api\model\Link(); |
|||
} |
|||
|
|||
/** |
|||
* 显示资源列表 |
|||
* |
|||
* @return \think\Response |
|||
*/ |
|||
public function index() |
|||
{ |
|||
//接受参数 |
|||
$_get = $this->request->get(); |
|||
|
|||
//数据处理 |
|||
$_data = $this->model->index(); |
|||
|
|||
//返回数据 |
|||
return send_http_status($_data); |
|||
|
|||
} |
|||
|
|||
|
|||
/** |
|||
* 添加数据 |
|||
* @return \think\Response |
|||
* @Log [sys_name] 在 [sys_time] 添加了友链:[name] |
|||
*/ |
|||
public function add() |
|||
{ |
|||
//接收参数 |
|||
$_post = $this->request->post(); |
|||
|
|||
//验证参数 |
|||
validate(\app\api\validate\Link::class)->check($_post); |
|||
|
|||
//处理并返回参数 |
|||
$insertId = $this->model->parentAdd($_post); |
|||
|
|||
return send_http_status($insertId, $insertId ? 201 : 202); |
|||
} |
|||
|
|||
|
|||
/** |
|||
* 读取单条数据 |
|||
* @param int $id |
|||
* @return \think\Response |
|||
*/ |
|||
public function read($id = '') |
|||
{ |
|||
//验证参数 |
|||
validate(\app\api\validate\Block::class)->scene('read')->check(['id' => $id]); |
|||
|
|||
//返回数据 |
|||
return send_http_status($this->model->parentRead($id)); |
|||
} |
|||
|
|||
/** |
|||
* 保存更新的资源 |
|||
* @param \think\Request $request |
|||
* @param int $id |
|||
* @return \think\Response |
|||
* @Log [sys_name]在[sys_time]修改了友链[id]的数据 |
|||
*/ |
|||
public function edit($id = 0) |
|||
{ |
|||
//接收参数 |
|||
$_post = $this->request->post(); |
|||
$_post['id'] = $id; //安全赋值,以免客户端没传id,修改需要id字段 |
|||
|
|||
//验证参数 |
|||
validate(\app\api\validate\Link::class)->scene('update')->check($_post); |
|||
|
|||
//处理并返回数据 |
|||
return send_http_status('', $this->model->parentEdit($_post, $id) ? 203 : 204); |
|||
} |
|||
|
|||
|
|||
/** |
|||
* 删除指定资源 |
|||
* @Log [sys_name] 在 [sys_time] 删除了友链id:[id] |
|||
* @param int $id |
|||
* @return \think\Response |
|||
*/ |
|||
public function delete() |
|||
{ |
|||
//接收参数 |
|||
$ids = $this->request->param('id'); |
|||
|
|||
//验证参数 |
|||
validate(['ids|id' => 'require|length:1,10'])->check(['ids' => $ids]); |
|||
|
|||
//处理并返回数据 |
|||
return send_http_status('', $this->model->parentDel($ids) ? 205 : 206); |
|||
} |
|||
|
|||
public function status() |
|||
{ |
|||
//接收参数 |
|||
$ids = $this->request->param('id'); |
|||
|
|||
$status = $this->request->param('status'); |
|||
|
|||
//验证参数 |
|||
$_rules = [ |
|||
'ids|id' => 'require|length:1,100', |
|||
'status|状态值' => 'require|number|length:1', |
|||
]; |
|||
validate($_rules)->check(['ids' => $ids, 'status' => $status]); |
|||
|
|||
//处理并返回数据 |
|||
return send_http_status('', $this->model->parentStatus($ids, $status) !== false ? 207 : 208); |
|||
} |
|||
|
|||
|
|||
} |
|||
@ -0,0 +1,136 @@ |
|||
<?php |
|||
declare (strict_types=1); |
|||
|
|||
/** |
|||
* Created by 安徽云掌. |
|||
* User: 云掌.帮德 |
|||
* Date: 2020/3/8 22:30 |
|||
* Desc: 行为日志类 |
|||
*/ |
|||
|
|||
namespace app\api\controller; |
|||
|
|||
use think\App; |
|||
|
|||
class Module extends Common |
|||
{ |
|||
public $model = null; |
|||
|
|||
public function __construct(App $app) |
|||
{ |
|||
parent::__construct($app); |
|||
$this->model = new \app\api\model\Module(); |
|||
} |
|||
|
|||
/** |
|||
* 显示资源列表 |
|||
* |
|||
* @return \think\Response |
|||
*/ |
|||
public function index() |
|||
{ |
|||
//接受参数 |
|||
$_get = $this->request->get(); |
|||
|
|||
//数据处理 |
|||
$_data = $this->model->index(); |
|||
|
|||
//返回数据 |
|||
return send_http_status($_data); |
|||
|
|||
} |
|||
|
|||
|
|||
/** |
|||
* 添加数据 |
|||
* @return \think\Response |
|||
* @Log [sys_name] 在 [sys_time] 添加了友链:[name] |
|||
*/ |
|||
public function add() |
|||
{ |
|||
//接收参数 |
|||
$_post = $this->request->post(); |
|||
|
|||
//验证参数 |
|||
validate(\app\api\validate\Module::class)->check($_post); |
|||
|
|||
//处理并返回参数 |
|||
$insertId = $this->model->addModule(); |
|||
|
|||
return send_http_status($insertId, $insertId ? 201 : 202); |
|||
} |
|||
|
|||
|
|||
/** |
|||
* 读取单条数据 |
|||
* @param int $id |
|||
* @return \think\Response |
|||
*/ |
|||
public function read($id = '') |
|||
{ |
|||
//验证参数 |
|||
validate(\app\api\validate\Block::class)->scene('read')->check(['id' => $id]); |
|||
|
|||
//返回数据 |
|||
return send_http_status($this->model->parentRead($id)); |
|||
} |
|||
|
|||
/** |
|||
* 保存更新的资源 |
|||
* @param \think\Request $request |
|||
* @param int $id |
|||
* @return \think\Response |
|||
* @Log [sys_name]在[sys_time]修改了友链[id]的数据 |
|||
*/ |
|||
public function edit($id = 0) |
|||
{ |
|||
//接收参数 |
|||
$_post = $this->request->post(); |
|||
$_post['id'] = $id; //安全赋值,以免客户端没传id,修改需要id字段 |
|||
|
|||
//验证参数 |
|||
validate(\app\api\validate\Module::class)->scene('update')->check($_post); |
|||
|
|||
//处理并返回数据 |
|||
return send_http_status('', $this->model->parentEdit($_post, $id) ? 203 : 204); |
|||
} |
|||
|
|||
|
|||
/** |
|||
* 删除指定资源 |
|||
* @Log [sys_name] 在 [sys_time] 删除了友链id:[id] |
|||
* @param int $id |
|||
* @return \think\Response |
|||
*/ |
|||
public function delete() |
|||
{ |
|||
//接收参数 |
|||
$ids = $this->request->param('id'); |
|||
|
|||
//验证参数 |
|||
validate(['ids|id' => 'require|length:1,10'])->check(['ids' => $ids]); |
|||
|
|||
//处理并返回数据 |
|||
return send_http_status('', $this->model->delModule($ids) ? 205 : 206); |
|||
} |
|||
|
|||
public function status() |
|||
{ |
|||
//接收参数 |
|||
$ids = $this->request->param('id'); |
|||
|
|||
$status = $this->request->param('status'); |
|||
|
|||
//验证参数 |
|||
$_rules = [ |
|||
'ids|id' => 'require|length:1,100', |
|||
'status|状态值' => 'require|number|length:1', |
|||
]; |
|||
validate($_rules)->check(['ids' => $ids, 'status' => $status]); |
|||
|
|||
//处理并返回数据 |
|||
return send_http_status('', $this->model->parentStatus($ids, $status) !== false ? 207 : 208); |
|||
} |
|||
|
|||
|
|||
} |
|||
@ -0,0 +1,61 @@ |
|||
<?php |
|||
declare (strict_types=1); |
|||
|
|||
/** |
|||
* Created by 安徽云掌. |
|||
* User: 云掌.帮德 |
|||
* Date: 2020/3/8 22:30 |
|||
* Desc: 行为日志类 |
|||
*/ |
|||
|
|||
namespace app\api\controller; |
|||
|
|||
use think\App; |
|||
|
|||
class SiteTemplate extends Common |
|||
{ |
|||
public $model = null; |
|||
|
|||
public function __construct(App $app) |
|||
{ |
|||
parent::__construct($app); |
|||
$this->model = new \app\api\model\SiteTemplate(); |
|||
} |
|||
|
|||
/** |
|||
* 显示资源列表 |
|||
* |
|||
* @return \think\Response |
|||
*/ |
|||
public function index() |
|||
{ |
|||
//接受参数 |
|||
$_get = $this->request->get(); |
|||
|
|||
//数据处理 |
|||
$_data = $this->model->index(); |
|||
|
|||
//返回数据 |
|||
return send_http_status($_data); |
|||
|
|||
} |
|||
|
|||
|
|||
public function change() |
|||
{ |
|||
//接收参数 |
|||
$ids = $this->request->param('id'); |
|||
|
|||
|
|||
//验证参数 |
|||
$_rules = [ |
|||
'id' => 'require|length:1,100' |
|||
]; |
|||
validate($_rules)->check(['id' => $ids]); |
|||
|
|||
//处理并返回数据 |
|||
return send_http_status('', $this->model->changeDefaultTemplate() !== false ? 207 : 208); |
|||
} |
|||
|
|||
|
|||
} |
|||
@ -0,0 +1,105 @@ |
|||
<?php |
|||
declare (strict_types=1); |
|||
|
|||
namespace app\api\model; |
|||
|
|||
use think\Model; |
|||
|
|||
/** |
|||
* @mixin think\Model |
|||
*/ |
|||
class Cate extends CmsCommon |
|||
{ |
|||
|
|||
public $table = 'bmz_cate'; |
|||
|
|||
|
|||
/** |
|||
* 列表数据模型 |
|||
* @return array|\think\Collection |
|||
* @throws \think\db\exception\DataNotFoundException |
|||
* @throws \think\db\exception\DbException |
|||
* @throws \think\db\exception\ModelNotFoundException |
|||
*/ |
|||
public function index() |
|||
{ |
|||
// $_op = config('app.app_debug') ?: $_op = $this->where('is_dev', 0); //开发者模式 |
|||
|
|||
$module_id = $this->request->param('module_id', 0); |
|||
$_op = $this->field('*'); |
|||
|
|||
if($module_id){ |
|||
$_op = $this->where('module_id',$module_id); |
|||
} |
|||
|
|||
$data = parent::parentLists($_op, 0); |
|||
|
|||
$mudule = new Module(); |
|||
$data_module = $mudule->parentLists(null,0); |
|||
$module_arr = []; |
|||
foreach ($data_module['data'] as $v){ |
|||
$module_arr[$v['id']] = $v['module_name']; |
|||
} |
|||
|
|||
foreach ($data['data'] as &$item){ |
|||
if(isset($module_arr[$item['module_id']])){ |
|||
$item['module_name'] = $module_arr[$item['module_id']]; |
|||
}else{ |
|||
$item['module_name'] = ''; |
|||
} |
|||
} |
|||
$data['data'] = $this->getHasChild($data['data']); |
|||
|
|||
|
|||
return $data; |
|||
|
|||
} |
|||
|
|||
function getHasChild($data){ |
|||
|
|||
foreach ($data as &$item){ |
|||
$item['has_child'] = 0; |
|||
foreach ($data as $val){ |
|||
if($val['parent_id'] == $item['id']){ |
|||
$item['has_child'] = 1; |
|||
break; |
|||
} |
|||
} |
|||
} |
|||
return $data; |
|||
|
|||
} |
|||
/** |
|||
* 新增或修改前 |
|||
* @param Model $model |
|||
* @return mixed|void |
|||
*/ |
|||
public static function onBeforeWrite(Model $model) |
|||
{ |
|||
//设定child_list |
|||
if (empty($model->getAttr('parent_id'))) { |
|||
//parent_id = 0 一级栏目填充 |
|||
$child_list = self::where('parent_id', 0)->max('child_list'); |
|||
$child_list = !empty($child_list) ? (int)$child_list + 1 : 100; //如果不存在设置默认值 100起始 |
|||
$model->setAttr('child_list', $child_list); |
|||
} else { |
|||
//子栏目填充 |
|||
$child_list = self::where('parent_id', $model->getAttr('parent_id'))->max('child_list'); //同级最大 |
|||
$parent_child_list = self::where('id', $model->getAttr('parent_id'))->value('child_list'); //父级初始 |
|||
$child_list = !empty($child_list) ? (int)$child_list + 1 : $parent_child_list . '100'; |
|||
$model->setAttr('child_list', $child_list); |
|||
} |
|||
parent::onBeforeWrite($model); |
|||
} |
|||
|
|||
|
|||
public static function onAfterDelete(Model $model) |
|||
{ |
|||
//删除父级栏目下所有子栏目 |
|||
if ($model->getAttr('child_list')) { |
|||
self::where('child_list', 'like', $model->getAttr('child_list') . '%')->useSoftDelete('delete_time', time())->delete(); |
|||
} |
|||
parent::onAfterDelete($model); |
|||
} |
|||
|
|||
} |
|||
@ -0,0 +1,69 @@ |
|||
<?php |
|||
declare (strict_types=1); |
|||
|
|||
namespace app\api\model; |
|||
|
|||
use think\facade\Db; |
|||
use think\Model; |
|||
|
|||
/** |
|||
* @mixin think\Model |
|||
*/ |
|||
class CateRelation extends CmsCommon |
|||
{ |
|||
|
|||
public $table = 'bmz_cate_relation'; |
|||
|
|||
|
|||
/** |
|||
* 列表数据模型 |
|||
* @return array|\think\Collection |
|||
* @throws \think\db\exception\DataNotFoundException |
|||
* @throws \think\db\exception\DbException |
|||
* @throws \think\db\exception\ModelNotFoundException |
|||
*/ |
|||
public function index() |
|||
{ |
|||
|
|||
$_op = $this->field('*'); |
|||
$data = parent::parentLists($_op); |
|||
|
|||
$cates = Db::name('cate') |
|||
->where('site_id',SITE_ID) |
|||
->where('template_id',TEMPLATE_ID) |
|||
->select()->toArray(); |
|||
$cates_all = array_column($cates,null,'id'); |
|||
|
|||
foreach ($data['data'] as &$item){ |
|||
$cate_arr = explode(',',$item['cate_ids']); |
|||
$cate_str = []; |
|||
foreach ($cate_arr as $i){ |
|||
if(isset($cates_all[$i])){ |
|||
$cate_str[] = $cates_all[$i]['cate_name']; |
|||
} |
|||
} |
|||
$item['cate_strs'] = implode(',',$cate_str); |
|||
} |
|||
|
|||
return $data; |
|||
|
|||
} |
|||
|
|||
/** |
|||
* 新增或修改前 |
|||
* @param Model $model |
|||
* @return mixed|void |
|||
*/ |
|||
public static function onBeforeWrite(Model $model) |
|||
{ |
|||
|
|||
parent::onBeforeWrite($model); |
|||
} |
|||
|
|||
|
|||
public static function onAfterDelete(Model $model) |
|||
{ |
|||
parent::onAfterDelete($model); |
|||
} |
|||
|
|||
} |
|||
@ -0,0 +1,272 @@ |
|||
<?php |
|||
declare (strict_types=1); |
|||
|
|||
namespace app\api\model; |
|||
|
|||
use service\ActionLog; |
|||
use think\App; |
|||
use think\Model; |
|||
use think\model\concern\SoftDelete; |
|||
|
|||
|
|||
/** |
|||
* 定义所有接口公共请求参数token【swagger ref使用】 |
|||
* @OA\Parameter( |
|||
* in="header", |
|||
* name="token", |
|||
* description="用户登录返回的jwt-token值", |
|||
* required=true, |
|||
* @OA\Schema( |
|||
* type="string" |
|||
* ) |
|||
* ), |
|||
* |
|||
*/ |
|||
|
|||
|
|||
/** |
|||
* @mixin think\Model |
|||
*/ |
|||
class CmsCommon extends Model |
|||
{ |
|||
|
|||
use SoftDelete; |
|||
|
|||
protected $deleteTime = 'delete_time'; |
|||
|
|||
protected $readonly = ['id', 'site_id']; |
|||
|
|||
public $search_arr = []; //搜索数据 |
|||
|
|||
/** |
|||
* Request实例 |
|||
* @var \think\Request |
|||
*/ |
|||
protected $request; |
|||
|
|||
public function __construct(array $_data = []) |
|||
{ |
|||
parent::__construct($_data); |
|||
$this->request = request(); |
|||
} |
|||
|
|||
/** |
|||
* 获取单条数据基类模型 |
|||
* @param string $id |
|||
* @param null $_op 模型链式对象 |
|||
* @return array|Model|null |
|||
* @throws \think\db\exception\DataNotFoundException |
|||
* @throws \think\db\exception\DbException |
|||
* @throws \think\db\exception\ModelNotFoundException |
|||
*/ |
|||
public function parentRead($id = '', $_op = null) |
|||
{ |
|||
if (!is_object($_op)) { |
|||
$_op = $this; |
|||
} |
|||
return $_op->where('site_id', SITE_ID)->where('template_id', TEMPLATE_ID)->find($id); |
|||
} |
|||
|
|||
/** |
|||
* 获取数据列表基类模型 |
|||
* @param null $_op 模型链式对象 |
|||
* @param int $ispage 是否分页,默认分页 |
|||
* @return array|\think\Collection |
|||
* @throws \think\db\exception\DataNotFoundException |
|||
* @throws \think\db\exception\DbException |
|||
* @throws \think\db\exception\ModelNotFoundException |
|||
*/ |
|||
protected function parentLists($_op = null, $ispage = 1,$issite=true) |
|||
{ |
|||
//模型对象为空,设定默认查询对象 |
|||
if($issite){ |
|||
if (!is_object($_op) || empty($_op)) { |
|||
$_op = $this->where('site_id', SITE_ID)->where('template_id', TEMPLATE_ID); //没有默认where查询 这个一定要 否则获取不到下面的getOptions查询条件值 |
|||
} else { |
|||
$_op->where('site_id', SITE_ID)->where('template_id', TEMPLATE_ID); //强制绑定站点参数 |
|||
} |
|||
} |
|||
|
|||
|
|||
|
|||
//公共搜索查询 |
|||
if (count($this->search_arr) > 0) { |
|||
$_param = request()->param(); //搜索参数集合 |
|||
$_op->where(function ($query) use ($_param) { |
|||
foreach ($this->search_arr as $k => $v) { |
|||
$search_arr = explode(':', $v); |
|||
$search_name = $search_arr[0]; |
|||
$logic = $search_arr[1] ?? 'AND'; |
|||
if (array_key_exists($search_name, $_param)) { |
|||
if (!empty($_param[$search_name])) { |
|||
$query->whereLike($search_name, "%{$_param[$search_name]}%", $logic); |
|||
} |
|||
} |
|||
} |
|||
}); |
|||
} |
|||
|
|||
//执行分页查询 |
|||
$page = $this->request->param('page', config('page')); |
|||
$limit = $this->request->param('limit', config('limit')); |
|||
$count = $_op->count(); |
|||
|
|||
$this->listsOrder($_op); //统一排序 |
|||
|
|||
//无分页判断 |
|||
$ispage != 1 ?: $_op->page((int)$page, (int)$limit); |
|||
|
|||
$_data = [ |
|||
'data' => $_op->select()->toArray(), |
|||
'page_total' => $count, |
|||
]; |
|||
return $_data; |
|||
} |
|||
|
|||
/** |
|||
* 数据排序 |
|||
*/ |
|||
private function listsOrder(&$_op) |
|||
{ |
|||
if ($_op->getOptions('order')) { |
|||
return; |
|||
} |
|||
$sort = $this->request->get('sort'); |
|||
$sort = in_array($sort, $this->checkAllowFields()) ? $sort : ''; |
|||
$order = $this->request->get('order', 'DESC', 'strtoupper') == 'ASC' ? 'ASC' : 'DESC'; |
|||
$sort_order = $sort . ' ' . $order; |
|||
if (empty($sort)) { |
|||
$sort_order = in_array('sort', $this->checkAllowFields()) ? 'sort DESC,create_time DESC' : 'create_time DESC'; |
|||
} |
|||
$_op->order($sort_order); |
|||
} |
|||
|
|||
/** |
|||
* 新增数据基类模型 |
|||
* @param array $_param |
|||
* @return Common|Model |
|||
*/ |
|||
public function parentAdd($_param = []) |
|||
{ |
|||
if (empty($_param)) { |
|||
$_param = $this->request->post(); |
|||
} |
|||
$_param['site_id'] = SITE_ID; |
|||
$_param['template_id'] = TEMPLATE_ID; //防止篡改站点 |
|||
|
|||
$_result = self::create($_param); |
|||
return $_result->id; |
|||
} |
|||
|
|||
/** |
|||
* 修改基类模型 |
|||
* @param array $_data |
|||
* @param null $_op 模型链式对象 |
|||
* @param $id |
|||
* @return bool|\type |
|||
* @throws \think\db\exception\DataNotFoundException |
|||
* @throws \think\db\exception\DbException |
|||
* @throws \think\db\exception\ModelNotFoundException |
|||
*/ |
|||
public function parentEdit($_data = [], $id = 0, $_op = null) |
|||
{ |
|||
if (empty($_data)) { |
|||
$_data = $this->request->param(); |
|||
} |
|||
if (!is_object($_op)) { |
|||
$_op = $this; |
|||
} |
|||
$_op = $_op->where('site_id', SITE_ID)->where('template_id', TEMPLATE_ID)->find($id); |
|||
if (empty($_op)) { |
|||
return send_http_status('', 101); |
|||
} |
|||
$_data['site_id'] = SITE_ID; //防止篡改站点 |
|||
$_data['template_id'] = TEMPLATE_ID; //防止篡改站点 |
|||
|
|||
return $_op->save($_data); |
|||
} |
|||
|
|||
/** |
|||
* 删除 |
|||
* @param $id |
|||
* @param null $_op 模型链式对象 |
|||
* @param false $true_delete 是否真删除 默认软删除 |
|||
* @return bool|\type |
|||
* @throws \think\db\exception\DataNotFoundException |
|||
* @throws \think\db\exception\DbException |
|||
* @throws \think\db\exception\ModelNotFoundException |
|||
*/ |
|||
public function parentDel($id, $_op = null, bool $true_delete = false) |
|||
{ |
|||
if (!is_object($_op)) { |
|||
$_op = $this; |
|||
} |
|||
$ids = explode(',', $id); |
|||
|
|||
$_op = $_op->where('id', 'in', $ids)->where('site_id', SITE_ID)->where('template_id', TEMPLATE_ID)->select(); |
|||
if ($_op->isEmpty()) { |
|||
return send_http_status('', 101); |
|||
} |
|||
return self::destroy($ids, $true_delete); //TP软删除 |
|||
} |
|||
|
|||
/** |
|||
* 更改数据状态 |
|||
* @param $id |
|||
* @param $status |
|||
* @param null $_op |
|||
* @return \type |
|||
* @throws \think\db\exception\DataNotFoundException |
|||
* @throws \think\db\exception\DbException |
|||
* @throws \think\db\exception\ModelNotFoundException |
|||
*/ |
|||
public function parentStatus($id, $status, $_op = null) |
|||
{ |
|||
if (!is_object($_op)) { |
|||
$_op = $this; |
|||
} |
|||
$ids = explode(',', $id); |
|||
$_op = $_op->where('id', 'in', $ids)->where('site_id', SITE_ID)->where('template_id', TEMPLATE_ID)->select(); |
|||
if ($_op->isEmpty()) { |
|||
return send_http_status('', 101); |
|||
} |
|||
$_where = [ |
|||
['id', 'in', $ids], |
|||
['site_id', '=', SITE_ID], |
|||
['template_id', '=', TEMPLATE_ID], |
|||
]; |
|||
// $affected = self::where('id', 'in', $ids)->where('site_id', SITE_ID)->update(['status' => $status]); |
|||
$affected = self::update(['status' => $status], $_where); |
|||
return $affected; |
|||
} |
|||
|
|||
public static function onAfterRead(Model $model) |
|||
{ |
|||
$model->offsetUnset('delete_time'); |
|||
} |
|||
|
|||
public static function onBeforeWrite(Model $model) |
|||
{ |
|||
//以下参数禁止新增或更改 |
|||
$model->setAttr('copy_safe_id', (int)$model->getAttr('id')); //设定副本参数 |
|||
$model->offsetUnset('id'); |
|||
$model->offsetUnset('delete_time'); |
|||
$model->offsetUnset('update_time'); |
|||
$model->offsetUnset('create_time'); |
|||
} |
|||
|
|||
|
|||
public static function onAfterWrite(Model $model) |
|||
{ |
|||
//增加创建和修改日志记录 |
|||
ActionLog::getInstance()->write($model->getData(), $model->getOrigin(), $model->getLastSql()); |
|||
|
|||
} |
|||
|
|||
public static function onAfterDelete(Model $model) |
|||
{ |
|||
//增加删除日志记录 |
|||
ActionLog::getInstance()->write($model->getData(), [], $model->getLastSql()); |
|||
} |
|||
|
|||
} |
|||
@ -0,0 +1,498 @@ |
|||
<?php |
|||
declare (strict_types=1); |
|||
|
|||
namespace app\api\model; |
|||
|
|||
use think\facade\Db; |
|||
use think\Model; |
|||
|
|||
/** |
|||
* @mixin think\Model |
|||
*/ |
|||
class Content extends CmsCommon |
|||
{ |
|||
|
|||
public $table = 'bmz_cms_common'; |
|||
protected $cms_table = 'bmz_cms'; |
|||
protected $cms_table_prefix = 'bmz_'; |
|||
|
|||
|
|||
/** |
|||
* 列表数据模型 |
|||
* @return array|\think\Collection |
|||
* @throws \think\db\exception\DataNotFoundException |
|||
* @throws \think\db\exception\DbException |
|||
* @throws \think\db\exception\ModelNotFoundException |
|||
*/ |
|||
public function index() |
|||
{ |
|||
|
|||
$_data = [ |
|||
'data' => [ |
|||
'content_data'=>[], |
|||
'module_info' => [], |
|||
'field_info' => [], |
|||
], |
|||
'page_total' => 0, |
|||
]; |
|||
$_data = [ |
|||
'data' => [ |
|||
], |
|||
'page_total' => 0, |
|||
]; |
|||
$cate_id = $this->request->param('cate_id', 0); |
|||
if(!$cate_id){ |
|||
return $_data; |
|||
} |
|||
|
|||
//获取当前栏目下是否有子栏目 |
|||
$count = Db::name('cate')->where('parent_id','=',$cate_id)->where('delete_time is null')->count(); |
|||
|
|||
if($count>0){ |
|||
return $_data; |
|||
} |
|||
|
|||
//获取当前栏目信息 |
|||
$cate_info = Db::name('cate')->find($cate_id); |
|||
if(!$cate_info){ |
|||
return $_data; |
|||
} |
|||
|
|||
$site_id = SITE_ID; |
|||
$module_id = $cate_info['module_id']; |
|||
//获取该栏目的模型和模型字段数据 |
|||
$module_info = Db::name('module')->find($module_id); |
|||
$field_info = Db::name('field')->where('module_id','=',$module_id)->order('sort asc')->select(); |
|||
$table_name = $this->cms_table.'_'.$module_info['table_name'].'_'.$site_id; |
|||
$table_base = in_array($module_info['table_name'],config('cms.base_module'))?$module_info['table_name']:''; |
|||
|
|||
//获取内容列表 |
|||
$_op = Db::name('cms_common')->alias('cms_common'); |
|||
if(in_array($table_name,Db::getTables())){ |
|||
$_op->join("{$table_name} {$table_name}","cms_common.id={$table_name}.common_id",'left'); |
|||
} |
|||
if($table_base!=''){ |
|||
$table_base = 'cms_'.$table_base; |
|||
$_op->join("{$table_base} {$table_base}","cms_common.id={$table_base}.common_id",'left'); |
|||
} |
|||
|
|||
|
|||
//公共搜索查询 |
|||
if (count($this->search_arr) > 0) { |
|||
$_param = request()->param(); //搜索参数集合 |
|||
$_op->where(function ($query) use ($_param) { |
|||
foreach ($this->search_arr as $k => $v) { |
|||
$search_arr = explode(':', $v); |
|||
$search_name = $search_arr[0]; |
|||
$logic = $search_arr[1] ?? 'AND'; |
|||
if (array_key_exists($search_name, $_param)) { |
|||
if (!empty($_param[$search_name])) { |
|||
$query->whereLike($search_name, "%{$_param[$search_name]}%", $logic); |
|||
} |
|||
} |
|||
} |
|||
}); |
|||
} |
|||
|
|||
$_op->where('delete_time is null'); |
|||
$_op->where('site_id',SITE_ID); |
|||
$_op->where('template_id',TEMPLATE_ID); |
|||
//执行分页查询 |
|||
$page = $this->request->param('page', config('page')); |
|||
$limit = $this->request->param('limit', config('limit')); |
|||
$count = $_op->count(); |
|||
|
|||
$this->listsOrder($_op); //统一排序 |
|||
|
|||
//无分页判断 |
|||
$_op->page((int)$page, (int)$limit); |
|||
$data = $_op->select()->toArray(); |
|||
|
|||
$data = $this->haddle_format_output($data,$field_info); |
|||
$field_infos = []; |
|||
|
|||
$field_infos = $this->handdle_fields($field_info); |
|||
|
|||
|
|||
$_data = [ |
|||
'data' => [ |
|||
'content_data'=>$data, |
|||
'module_info' => $module_info, |
|||
'field_info' => $field_infos, |
|||
], |
|||
'page_total' => $count, |
|||
]; |
|||
|
|||
// $_data = [ |
|||
// 'data' => $_op->select()->toArray(), |
|||
// 'page_total' => $count, |
|||
// ]; |
|||
|
|||
return $_data; |
|||
|
|||
|
|||
} |
|||
|
|||
|
|||
public function addPost($postData){ |
|||
foreach ($postData as &$item){ |
|||
$item = htmlspecialchars_decode($item); |
|||
} |
|||
|
|||
//获取模型关联的表 和 所有的字段 |
|||
$cate_id = $this->request->param('cate_id', 0); |
|||
|
|||
//获取当前栏目信息 |
|||
$cate_info = Db::name('cate')->find($cate_id); |
|||
if(!$cate_info){ |
|||
return ['code'=>'500','msg'=>'栏目不存在']; |
|||
} |
|||
|
|||
$site_id = SITE_ID; |
|||
$module_id = $cate_info['module_id']; |
|||
|
|||
//获取该栏目的模型和模型字段数据 |
|||
$module_info = Db::name('module')->find($module_id); |
|||
$field_info = Db::name('field')->where('module_id','=',$module_id)->where('is_add',1)->order('sort asc')->select(); |
|||
$table_name = $this->cms_table.'_'.$module_info['table_name'].'_'.$site_id; |
|||
$table_insert_name = 'cms_'.$module_info['table_name'].'_'.$site_id; |
|||
$table_base = in_array($module_info['table_name'],config('cms.base_module'))?$module_info['table_name']:''; |
|||
|
|||
//格式化postData 与 校验字段 |
|||
$h_postData = $this->handdle_post_data($postData,$field_info); |
|||
if($h_postData['code']!=200){ |
|||
return $h_postData; |
|||
} |
|||
|
|||
//分表插入数据 |
|||
$postData = $h_postData['postData']; |
|||
|
|||
//先插入主表 获取主表id |
|||
$fields_common = Db::getTableFields($this->cms_table_prefix.'cms_common'); |
|||
$common_data = ['site_id'=>$site_id,'create_time'=>time(),'update_time'=>time(),'template_id'=>TEMPLATE_ID]; |
|||
foreach($fields_common as $item){ |
|||
if(isset($postData[$item])){ |
|||
$common_data[$item] = $postData[$item]; |
|||
} |
|||
} |
|||
|
|||
$common_id = Db::name('cms_common')->insert($common_data,true); |
|||
if(!$common_id){ |
|||
return ['code'=>500,'msg'=>'插入失败,稍后重试']; |
|||
} |
|||
|
|||
if($table_base!=''){ |
|||
$table_base ='cms_'.$table_base; |
|||
$fields_base = Db::getTableFields($this->cms_table_prefix.$table_base); |
|||
$base_data = ['common_id'=>$common_id]; |
|||
foreach($fields_base as $item){ |
|||
if(isset($postData[$item])){ |
|||
$base_data[$item] = $postData[$item]; |
|||
} |
|||
} |
|||
$base_id = Db::name($table_base)->insert($base_data,true); |
|||
} |
|||
|
|||
if(in_array($table_name,Db::getTables())){ |
|||
$table_base = $table_name; |
|||
$fields_table = Db::getTableFields($table_base); |
|||
$table_data = ['common_id'=>$common_id]; |
|||
foreach($fields_table as $item){ |
|||
if(isset($postData[$item])){ |
|||
$table_data[$item] = $postData[$item]; |
|||
} |
|||
} |
|||
$table_id = Db::name($table_insert_name)->insert($table_data,true); |
|||
} |
|||
|
|||
|
|||
if($common_id && ($base_id || $table_id)){ |
|||
return ['data'=>$common_id,'code'=>200,'msg'=>'success']; |
|||
}else{ |
|||
//删除主表 |
|||
Db::name('cms_common')->where('id',$common_id)->delete(); |
|||
Db::name($table_base)->where('common_id',$common_id)->delete(); |
|||
Db::name($table_insert_name)->where('common_id',$common_id)->delete(); |
|||
return ['data'=>0,'code'=>500,'msg'=>'插入错误,稍后重试']; |
|||
} |
|||
|
|||
} |
|||
|
|||
public function editPost($postData,$id){ |
|||
|
|||
foreach ($postData as &$item){ |
|||
$item = htmlspecialchars_decode(strval($item)); |
|||
} |
|||
|
|||
//获取模型关联的表 和 所有的字段 |
|||
$site_id = SITE_ID; |
|||
|
|||
$common_id = isset($postData['id'])?$postData['id']:$id; |
|||
|
|||
//获取模型关联的表 和 所有的字段 |
|||
$cate_id = $this->request->param('cate_id', 0); |
|||
|
|||
//获取当前栏目信息 |
|||
$cate_info = Db::name('cate')->find($cate_id); |
|||
if(!$cate_info ){ |
|||
return ['code'=>201,'msg'=>'栏目不存在']; ; |
|||
} |
|||
|
|||
if(!$common_id ){ |
|||
return ['code'=>201,'msg'=>'id不存在']; ; |
|||
} |
|||
|
|||
|
|||
$site_id = SITE_ID; |
|||
$module_id = $cate_info['module_id']; |
|||
|
|||
//获取该栏目的模型和模型字段数据 |
|||
$module_info = Db::name('module')->find($module_id); |
|||
$field_info = Db::name('field')->where('module_id','=',$module_id)->where('is_edit',1)->order('sort asc')->select(); |
|||
$table_name = $this->cms_table.'_'.$module_info['table_name'].'_'.$site_id; |
|||
$table_insert_name = 'cms_'.$module_info['table_name'].'_'.$site_id; |
|||
$table_base = in_array($module_info['table_name'],config('cms.base_module'))?$module_info['table_name']:''; |
|||
|
|||
//格式化postData 与 校验字段 |
|||
$h_postData = $this->handdle_post_data($postData,$field_info); |
|||
if($h_postData['code']!=200){ |
|||
return $h_postData; |
|||
} |
|||
$postData = $h_postData['postData']; |
|||
//分表插入数据 |
|||
unset($postData['id']); |
|||
|
|||
//先插入主表 获取主表id |
|||
$fields_common = Db::getTableFields($this->cms_table_prefix.'cms_common'); |
|||
$common_data = ['update_time'=>time()]; |
|||
|
|||
|
|||
foreach($fields_common as $item){ |
|||
if(isset($postData[$item])){ |
|||
$common_data[$item] = $postData[$item]; |
|||
} |
|||
} |
|||
Db::name('cms_common')->where('id',$common_id)->update($common_data,true); |
|||
|
|||
|
|||
if($table_base!=''){ |
|||
$table_base ='cms_'.$table_base; |
|||
$fields_base = Db::getTableFields($this->cms_table_prefix.$table_base); |
|||
|
|||
$base_data = []; |
|||
foreach($fields_base as $item){ |
|||
if(isset($postData[$item])){ |
|||
$base_data[$item] = $postData[$item]; |
|||
} |
|||
} |
|||
|
|||
Db::name($table_base)->where('common_id',$common_id)->update($base_data,true); |
|||
} |
|||
|
|||
if(in_array($table_name,Db::getTables())){ |
|||
$table_base = $table_name; |
|||
$fields_table = Db::getTableFields($table_base); |
|||
$table_data = []; |
|||
foreach($fields_table as $item){ |
|||
if(isset($postData[$item])){ |
|||
$table_data[$item] = $postData[$item]; |
|||
} |
|||
} |
|||
Db::name($table_insert_name)->where('common_id',$common_id)->update($table_data,true); |
|||
} |
|||
|
|||
return ['data'=>$common_id,'code'=>200,'msg'=>'success']; |
|||
|
|||
} |
|||
|
|||
public function handdle_post_data($postData,$field_info){ |
|||
$formatData = []; |
|||
$code = 0; |
|||
|
|||
foreach ($field_info as $item){ |
|||
if($item['required'] && !isset($postData[$item['field']])){ |
|||
return ['code'=>201,'msg'=>'请填写'.$item['name']]; |
|||
} |
|||
|
|||
if($item['minlength']>0 && isset($postData[$item['field']]) && strlen($postData[$item['field']])<$item['minlength']){ |
|||
return ['code'=>201,'msg'=>$item['name'].'最小长度为:'.$item['minlength']]; |
|||
} |
|||
|
|||
if($item['maxlength']>0 && isset($postData[$item['field']]) && strlen($postData[$item['field']])>$item['maxlength']){ |
|||
return ['code'=>201,'msg'=>$item['name'].'最大长度为:'.$item['maxlength']]; |
|||
} |
|||
|
|||
//如果是时间或者是日期时间 将字符串转化为时间 |
|||
if($item['type'] == 'datetime' && isset($postData[$item['field']])){ |
|||
$postData[$item['field']] = strtotime($postData[$item['field']] ); |
|||
} |
|||
|
|||
} |
|||
return ['code'=>200,'postData'=>$postData]; |
|||
} |
|||
public function handdle_fields($field_info){ |
|||
$listFields = $editFields = $addFields = []; |
|||
foreach ($field_info as $k=>$item){ |
|||
$dicts = config('dict.sqlfields'); |
|||
$value_arr = []; |
|||
//如果字段来源是字典 则查询字典值作为值数组 |
|||
if($item['data_source']==1){ |
|||
if(isset($dicts[$item['dict_code']])){ |
|||
$value_arr = $dicts[$item['dict_code']]; |
|||
} |
|||
}if($item['data_source']==2){ |
|||
$fiels_sources = Db::name(strtolower($item['relation_model'])) |
|||
->where('site_id',SITE_ID) |
|||
->where('template_id',TEMPLATE_ID) |
|||
->where('status',1) |
|||
->select(); |
|||
foreach ($fiels_sources as $item_model){ |
|||
$value_arr[$item_model['id']] = $item_model[$item['relation_field']]; |
|||
} |
|||
} |
|||
|
|||
|
|||
//列表显示字段 |
|||
if($item['is_list']){ |
|||
$listFields[$k]['field'] = $item['field']; |
|||
$listFields[$k]['type'] = $item['type']; |
|||
$listFields[$k]['data_source'] = $item['data_source']; |
|||
$listFields[$k]['show_name'] = $item['name']; |
|||
$listFields[$k]['show_value'] = $item['data_source'] == 0 ? $item['field'] : $item['field'].'_str'; |
|||
} |
|||
|
|||
//添加显示字段 |
|||
if($item['is_add']){ |
|||
$addFields[$k]['field'] = $item['field']; |
|||
$addFields[$k]['type'] = $item['type']; |
|||
$addFields[$k]['data_source'] = $item['data_source']; |
|||
$addFields[$k]['show_name'] = $item['name']; |
|||
$addFields[$k]['tips'] = $item['tips']; |
|||
$addFields[$k]['required'] = $item['required']; |
|||
$addFields[$k]['minlength'] = $item['minlength']; |
|||
$addFields[$k]['maxlength'] = $item['maxlength']; |
|||
$addFields[$k]['value_arr'] = $value_arr; |
|||
$addFields[$k]['is_arr'] = $item['data_source'] == 0 ? 0 : 1; |
|||
$addFields[$k]['placeholder'] = $item['data_source'] == 0 ? '请输入'.$item['name'] : '请选择'.$item['name']; |
|||
$addFields[$k]['relation_model'] = $item['relation_model']; |
|||
$addFields[$k]['show_value'] = $item['data_source'] == 0 ? $item['field'] : $item['field'].'_str'; |
|||
} |
|||
|
|||
//添加显示字段 |
|||
if($item['is_edit']){ |
|||
$editFields[$k]['field'] = $item['field']; |
|||
$editFields[$k]['type'] = $item['type']; |
|||
$editFields[$k]['data_source'] = $item['data_source']; |
|||
$editFields[$k]['show_name'] = $item['name']; |
|||
$editFields[$k]['tips'] = $item['tips']; |
|||
$editFields[$k]['required'] = $item['required']; |
|||
$editFields[$k]['minlength'] = $item['minlength']; |
|||
$editFields[$k]['maxlength'] = $item['maxlength']; |
|||
$editFields[$k]['value_arr'] = $value_arr; |
|||
$editFields[$k]['is_arr'] = $item['data_source'] == 0 ? 0 : 1; |
|||
$editFields[$k]['placeholder'] = $item['data_source'] == 0 ? '请输入'.$item['name'] : '请选择'.$item['name']; |
|||
$editFields[$k]['relation_model'] = $item['relation_model']; |
|||
$editFields[$k]['show_value'] = $item['data_source'] == 0 ? $item['field'] : $item['field'].'_str'; |
|||
} |
|||
|
|||
} |
|||
|
|||
return [ |
|||
'list_fields'=>array_values($listFields), |
|||
'add_fields'=>array_values($addFields), |
|||
'editFields'=>array_values($editFields), |
|||
]; |
|||
} |
|||
|
|||
/** |
|||
* 数据排序 |
|||
*/ |
|||
private function listsOrder(&$_op) |
|||
{ |
|||
if ($_op->getOptions('order')) { |
|||
return; |
|||
} |
|||
$sort = $this->request->get('sort'); |
|||
$sort = in_array($sort, $this->checkAllowFields()) ? $sort : ''; |
|||
$order = $this->request->get('order', 'DESC', 'strtoupper') == 'ASC' ? 'ASC' : 'DESC'; |
|||
$sort_order = $sort . ' ' . $order; |
|||
if (empty($sort)) { |
|||
$sort_order = in_array('sort', $this->checkAllowFields()) ? 'sort DESC,create_time DESC' : 'create_time DESC'; |
|||
} |
|||
$_op->order($sort_order); |
|||
} |
|||
|
|||
/** |
|||
* 新增或修改前 |
|||
* @param Model $model |
|||
* @return mixed|void |
|||
*/ |
|||
public static function onBeforeWrite(Model $model) |
|||
{ |
|||
//设定child_list |
|||
if (empty($model->getAttr('parent_id'))) { |
|||
//parent_id = 0 一级栏目填充 |
|||
$child_list = self::where('parent_id', 0)->max('child_list'); |
|||
$child_list = !empty($child_list) ? (int)$child_list + 1 : 100; //如果不存在设置默认值 100起始 |
|||
$model->setAttr('child_list', $child_list); |
|||
} else { |
|||
//子栏目填充 |
|||
$child_list = self::where('parent_id', $model->getAttr('parent_id'))->max('child_list'); //同级最大 |
|||
$parent_child_list = self::where('id', $model->getAttr('parent_id'))->value('child_list'); //父级初始 |
|||
$child_list = !empty($child_list) ? (int)$child_list + 1 : $parent_child_list . '100'; |
|||
$model->setAttr('child_list', $child_list); |
|||
} |
|||
parent::onBeforeWrite($model); |
|||
} |
|||
|
|||
|
|||
public static function onAfterDelete(Model $model) |
|||
{ |
|||
//删除父级栏目下所有子栏目 |
|||
if ($model->getAttr('child_list')) { |
|||
self::where('child_list', 'like', $model->getAttr('child_list') . '%')->useSoftDelete('delete_time', time())->delete(); |
|||
} |
|||
parent::onAfterDelete($model); |
|||
} |
|||
|
|||
//处理输出的字符格式 |
|||
public function haddle_format_output($data,$field_info){ |
|||
|
|||
$fields = []; |
|||
foreach ($field_info as $field){ |
|||
$fields[$field['field']] = $field; |
|||
} |
|||
|
|||
$dicts = config('dict.sqlfields'); |
|||
|
|||
foreach ($data as &$item){ |
|||
foreach ($item as $k=>$field_value){ |
|||
|
|||
if(isset($fields[$k]) && $fields[$k]['data_source']==0 ){ |
|||
//字段来源本身 看是否是时间戳转化即可 |
|||
if(in_array($fields[$k]['type'],['datetime','time'])){ |
|||
$item[$k] = date('Y-m-d H:i:s',$field_value); |
|||
} |
|||
}elseif(isset($fields[$k]) && $fields[$k]['data_source']==1){ |
|||
|
|||
$item[$k.'_str'] = ''; |
|||
//如果字段来源是字典 则查询字典值进行替换 |
|||
if(isset($dicts[$fields[$k]['dict_code']]) && isset($dicts[$fields[$k]['dict_code']][$field_value])){ |
|||
$item[$k.'_str'] = $dicts[$fields[$k]['dict_code']][$field_value]; |
|||
} |
|||
|
|||
}elseif(isset($fields[$k]) && $fields[$k]['data_source']==2){ |
|||
//如果字段来源是模型 则要查询相关表进行查询 替换 |
|||
$fiels_sources = Db::name(strtolower($fields[$k]['relation_model'])) |
|||
->where('id',$field_value) |
|||
->find(); |
|||
$item[$k.'_str'] = isset($fiels_sources[strtolower($fields[$k]['relation_field'])])?$fiels_sources[strtolower($fields[$k]['relation_field'])]:''; |
|||
} |
|||
} |
|||
|
|||
} |
|||
return $data; |
|||
|
|||
} |
|||
|
|||
} |
|||
@ -0,0 +1,49 @@ |
|||
<?php |
|||
declare (strict_types=1); |
|||
|
|||
namespace app\api\model; |
|||
|
|||
use app\Request; |
|||
use think\facade\Db; |
|||
use think\Model; |
|||
|
|||
/** |
|||
* @mixin think\Model |
|||
*/ |
|||
class Debris extends CmsCommon |
|||
{ |
|||
|
|||
protected $table = 'bmz_debris'; |
|||
/** |
|||
* 管理员列表数据模型 |
|||
* @return array|\think\Collection |
|||
* @throws \think\db\exception\DataNotFoundException |
|||
* @throws \think\db\exception\DbException |
|||
* @throws \think\db\exception\ModelNotFoundException |
|||
*/ |
|||
public function index() |
|||
{ |
|||
|
|||
$this->search_arr = ['title','name']; |
|||
|
|||
$_op = $this->field('*'); |
|||
|
|||
//执行通用查询 |
|||
return parent::parentLists($_op); |
|||
} |
|||
|
|||
|
|||
/** |
|||
* 读取后 |
|||
* @param Model $model |
|||
* @return bool|void |
|||
*/ |
|||
public static function onAfterRead(Model $model) |
|||
{ |
|||
if (in_array(request()->action(), ['edit', 'delete', 'status'])) { |
|||
return true; |
|||
} |
|||
|
|||
} |
|||
|
|||
} |
|||
@ -0,0 +1,313 @@ |
|||
<?php |
|||
declare (strict_types=1); |
|||
|
|||
namespace app\api\model; |
|||
|
|||
use app\Request; |
|||
use think\facade\Config; |
|||
use think\facade\Db; |
|||
use think\Model; |
|||
|
|||
/** |
|||
* @mixin think\Model |
|||
*/ |
|||
class Field extends Common |
|||
{ |
|||
|
|||
protected $table = 'bmz_field'; |
|||
protected $_data_table = 'field'; |
|||
protected $cms_table = 'bmz_cms'; |
|||
/** |
|||
* 管理员列表数据模型 |
|||
* @return array|\think\Collection |
|||
* @throws \think\db\exception\DataNotFoundException |
|||
* @throws \think\db\exception\DbException |
|||
* @throws \think\db\exception\ModelNotFoundException |
|||
*/ |
|||
public function index() |
|||
{ |
|||
|
|||
$this->search_arr = ['name','field']; |
|||
|
|||
$module_id = $this->request->param('module_id', 0); |
|||
$_op = $this->field('*'); |
|||
|
|||
if($module_id){ |
|||
$_op = $this->where('module_id',$module_id); |
|||
} |
|||
|
|||
//执行通用查询 |
|||
return parent::parentLists($_op); |
|||
} |
|||
|
|||
|
|||
/** |
|||
* 读取后 |
|||
* @param Model $model |
|||
* @return bool|void |
|||
*/ |
|||
public static function onAfterRead(Model $model) |
|||
{ |
|||
|
|||
if (in_array(request()->action(), [ 'delete', 'status'])) { |
|||
return true; |
|||
} |
|||
$m_id = $model->getAttr('module_id'); |
|||
$type = $model->getAttr('type'); |
|||
$m_model = new Module(); |
|||
|
|||
if($m_id>0){ |
|||
$module_data = $m_model->find($m_id)->toArray(); |
|||
if($module_data){ |
|||
$model->setAttr('module_name',$module_data['module_name']); |
|||
}else{ |
|||
$model->setAttr('module_name',''); |
|||
} |
|||
}else{ |
|||
$model->setAttr('module_name',''); |
|||
} |
|||
|
|||
$cms_field_rtoes = $lists = config('cms.field_types'); |
|||
if(isset($cms_field_rtoes[$type])){ |
|||
$model->setAttr('type_name',$cms_field_rtoes[$type]); |
|||
}else{ |
|||
$model->setAttr('type_name',''); |
|||
} |
|||
|
|||
} |
|||
|
|||
|
|||
public function delPost($ids){ |
|||
|
|||
if (strpos($ids, ',') !== false) { |
|||
return -1; |
|||
} |
|||
|
|||
$site_id = SITE_ID; |
|||
//获取module信息 |
|||
$m_model = new Module(); |
|||
$field_info = $this->find($ids)->toArray(); |
|||
$field = $field_info['field']; |
|||
if(!$field_info){ |
|||
return -1; |
|||
} |
|||
//获取模型信息 |
|||
$module_info = $m_model->find($field_info['module_id'])->toArray(); |
|||
if(!$module_info){ |
|||
return -1; |
|||
} |
|||
$table_name = $this->cms_table.'_'.$module_info['table_name'].'_'.$site_id; |
|||
$stste = $this->parentDel($ids); |
|||
if($stste){ |
|||
//实际查询表中是否有该字段 |
|||
if ($this->_iset_field($table_name,$field )) { |
|||
Db::execute("ALTER TABLE `{$table_name}` DROP `$field`"); |
|||
} |
|||
} |
|||
return $stste; |
|||
|
|||
} |
|||
|
|||
/** |
|||
* 新增或修改前 |
|||
* @param Model $model |
|||
* @return mixed|void |
|||
*/ |
|||
// public static function onBeforeWrite(Model $model) |
|||
// { |
|||
// if (!in_array(request()->action(), ['add', 'edit','dataEdit','dataAdd'])) { |
|||
// return; |
|||
// } |
|||
// |
|||
// |
|||
// } |
|||
|
|||
public function addPost(){ |
|||
$_param = $this->request->post(); |
|||
if(!$_param){ |
|||
return 0; |
|||
} |
|||
$site_id = SITE_ID; |
|||
//获取module信息 |
|||
$m_model = new Module(); |
|||
$module_info = $m_model->find($_param['module_id'])->toArray(); |
|||
if(!$module_info){ |
|||
return -1; |
|||
} |
|||
|
|||
$table_name = $this->cms_table.'_'.$module_info['table_name'].'_'.$site_id; |
|||
//数据库没有表先建立表 |
|||
$tables = Db::getTables(); |
|||
if(!in_array($table_name,$tables)){ |
|||
$t_sqlStr = "`id` int(11) unsigned NOT NULL AUTO_INCREMENT, " . |
|||
"`common_id` int(11) NOT NULL DEFAULT '0', "; |
|||
$t_sql = "CREATE TABLE `{$table_name}` ( |
|||
{$t_sqlStr} |
|||
PRIMARY KEY (`id`) |
|||
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COMMENT='".$module_info['table_comment']."'"; |
|||
Db::execute($t_sql); |
|||
} |
|||
|
|||
// 查询字段是否已录入 |
|||
$hasIn = $this->where('field', $_param['field'])->where('module_id', $_param['module_id'])->count(); |
|||
if ($hasIn) { |
|||
return -2; |
|||
} |
|||
|
|||
// 查询字段是否已在表中存在 |
|||
if ($this->_iset_field($table_name, $_param['field'])) { |
|||
return -2; |
|||
} else { |
|||
// 获取字段sql |
|||
$addfieldsql = $this->get_tablesql($_param, 'add'); |
|||
} |
|||
|
|||
$field = $this->parentAdd($_param); |
|||
if ($field) { |
|||
// 数据库已存在字段时不再执行字段操作 |
|||
if (isset($addfieldsql) && !empty($addfieldsql)) { |
|||
if (is_array($addfieldsql)) { |
|||
foreach ($addfieldsql as $sql) { |
|||
Db::execute($sql); |
|||
} |
|||
} else { |
|||
Db::execute($addfieldsql); |
|||
} |
|||
} |
|||
} |
|||
return $field; |
|||
} |
|||
|
|||
public function editPost($id){ |
|||
$_param = $this->request->post(); |
|||
if(!$_param){ |
|||
return 0; |
|||
} |
|||
$site_id = SITE_ID; |
|||
//获取module信息 |
|||
$m_model = new Module(); |
|||
$module_info = $m_model->find($_param['module_id'])->toArray(); |
|||
if(!$module_info){ |
|||
return -1; |
|||
} |
|||
|
|||
$table_name = $this->cms_table.'_'.$module_info['table_name'].'_'.$site_id; |
|||
//数据库没有表先建立表 |
|||
$tables = Db::getTables(); |
|||
if(!in_array($table_name,$tables)){ |
|||
$t_sqlStr = "`id` int(11) unsigned NOT NULL AUTO_INCREMENT, " . |
|||
"`common_id` int(11) NOT NULL DEFAULT '0', "; |
|||
$t_sql = "CREATE TABLE `{$table_name}` ( |
|||
{$t_sqlStr} |
|||
PRIMARY KEY (`id`) |
|||
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COMMENT='".$module_info['table_comment']."'"; |
|||
Db::execute($t_sql); |
|||
} |
|||
|
|||
// 查询字段是否已在表中存在 |
|||
if (!$this->_iset_field($table_name, $_param['field'])) { |
|||
return -2; |
|||
} else { |
|||
// 获取字段sql |
|||
$editfieldsql = $this->get_tablesql($_param, 'edit'); |
|||
} |
|||
|
|||
$field = $this->parentEdit($_param,$id); |
|||
if ($field) { |
|||
// 数据库已存在字段时不再执行字段操作 |
|||
if (is_array($editfieldsql)) { |
|||
foreach ($editfieldsql as $sql) { |
|||
Db::execute($sql); |
|||
} |
|||
} else { |
|||
Db::execute($editfieldsql); |
|||
} |
|||
} |
|||
return $field; |
|||
} |
|||
|
|||
/** |
|||
* 判断表中是否存在所选字段 |
|||
* @param $table 表全称 |
|||
* @param $field 字段名称 |
|||
* @return mixed |
|||
*/ |
|||
protected function _iset_field($table, $field) |
|||
{ |
|||
$fields = Db::getTableFields($table); |
|||
if (array_search($field, $fields) === false) { |
|||
return false; |
|||
} else { |
|||
return true; |
|||
} |
|||
} |
|||
|
|||
|
|||
|
|||
/** |
|||
* 获取要执行的sql |
|||
* @param array $info 字段信息 |
|||
* @param string $do 操作类型[add/edit] |
|||
* @return array|string |
|||
*/ |
|||
protected function get_tablesql(array $info, string $do = 'add') |
|||
{ |
|||
$sql = ''; |
|||
$comment = $info['name']; |
|||
$type = $info['type']; |
|||
|
|||
$cms_field_set_ups = $lists = config('cms.field_set_ups'); |
|||
$set_ups = $cms_field_set_ups[$type]; |
|||
$fieldtype = $set_ups?$set_ups['fieldtype']:'varchar'; |
|||
|
|||
$default = $set_ups?$set_ups['default']:'varchar'; |
|||
$field = $info['field']; |
|||
$site_id = SITE_ID; |
|||
//获取module信息 |
|||
$m_model = new Module(); |
|||
$module_info = $m_model->find($info['module_id'])->toArray(); |
|||
|
|||
$tablename = $this->cms_table.'_'.$module_info['table_name'].'_'.$site_id; |
|||
|
|||
$pk = 'id'; |
|||
|
|||
$maxlength = isset($info['maxlength'])?intval($info['maxlength']):0; |
|||
$minlength = isset($info['minlength'])?intval($info['minlength']):0; |
|||
$numbertype = '1'; // 是否包含负数 |
|||
if ($do == 'add') { |
|||
$do = ' ADD '; |
|||
} else { |
|||
$do = " CHANGE `$field` "; |
|||
} |
|||
// int varchart text longtext |
|||
switch ($fieldtype){ |
|||
case 'int': |
|||
if (!$maxlength) |
|||
$maxlength = 10; |
|||
$sql = "ALTER TABLE `$tablename` $do `$field` $fieldtype( $maxlength ) "." NOT NULL DEFAULT '$default' COMMENT '$comment'"; |
|||
break; |
|||
case 'varchar': |
|||
if (!$maxlength) { |
|||
$maxlength = 255; |
|||
} |
|||
$maxlength = min($maxlength, 500); |
|||
$sql = "ALTER TABLE `$tablename` $do `$field` $fieldtype( $maxlength ) NOT NULL DEFAULT '$default' COMMENT '$comment'"; |
|||
break; |
|||
case 'text': |
|||
$sql = "ALTER TABLE `$tablename` $do `$field` TEXT NULL COMMENT '$comment'"; |
|||
break; |
|||
case 'longtext': |
|||
$sql = "ALTER TABLE `$tablename` $do `$field` LONGTEXT NULL COMMENT '$comment'"; |
|||
break; |
|||
default: |
|||
if (!$maxlength) { |
|||
$maxlength = 255; |
|||
} |
|||
$maxlength = min($maxlength, 255); |
|||
$sql = "ALTER TABLE `$tablename` $do `$field` $fieldtype( $maxlength ) NOT NULL DEFAULT '$default' COMMENT '$comment'"; |
|||
break; |
|||
} |
|||
return $sql; |
|||
} |
|||
|
|||
} |
|||
@ -0,0 +1,49 @@ |
|||
<?php |
|||
declare (strict_types=1); |
|||
|
|||
namespace app\api\model; |
|||
|
|||
use app\Request; |
|||
use think\facade\Db; |
|||
use think\Model; |
|||
|
|||
/** |
|||
* @mixin think\Model |
|||
*/ |
|||
class Link extends Common |
|||
{ |
|||
|
|||
protected $table = 'bmz_link'; |
|||
/** |
|||
* 管理员列表数据模型 |
|||
* @return array|\think\Collection |
|||
* @throws \think\db\exception\DataNotFoundException |
|||
* @throws \think\db\exception\DbException |
|||
* @throws \think\db\exception\ModelNotFoundException |
|||
*/ |
|||
public function index() |
|||
{ |
|||
|
|||
$this->search_arr = ['url','name']; |
|||
|
|||
$_op = $this->field('*'); |
|||
|
|||
//执行通用查询 |
|||
return parent::parentLists($_op); |
|||
} |
|||
|
|||
|
|||
/** |
|||
* 读取后 |
|||
* @param Model $model |
|||
* @return bool|void |
|||
*/ |
|||
public static function onAfterRead(Model $model) |
|||
{ |
|||
if (in_array(request()->action(), ['edit', 'delete', 'status'])) { |
|||
return true; |
|||
} |
|||
|
|||
} |
|||
|
|||
} |
|||
@ -0,0 +1,374 @@ |
|||
<?php |
|||
declare (strict_types=1); |
|||
|
|||
namespace app\api\model; |
|||
|
|||
use app\common\model\Field; |
|||
use app\Request; |
|||
use think\facade\Config; |
|||
use think\facade\Db; |
|||
use think\Model; |
|||
|
|||
/** |
|||
* @mixin think\Model |
|||
*/ |
|||
class Module extends Common |
|||
{ |
|||
|
|||
protected $table = 'bmz_module'; |
|||
protected $cms_table = 'bmz_cms'; |
|||
/** |
|||
* 管理员列表数据模型 |
|||
* @return array|\think\Collection |
|||
* @throws \think\db\exception\DataNotFoundException |
|||
* @throws \think\db\exception\DbException |
|||
* @throws \think\db\exception\ModelNotFoundException |
|||
*/ |
|||
public function index() |
|||
{ |
|||
|
|||
$this->search_arr = ['module_name','table_name']; |
|||
|
|||
$id = $this->request->param('id', 0); |
|||
|
|||
$_op = $this->field('*'); |
|||
if($id){ |
|||
$_op = $this->where('id',$id); |
|||
} |
|||
//执行通用查询 |
|||
return parent::parentLists($_op); |
|||
} |
|||
|
|||
|
|||
/** |
|||
* 读取后 |
|||
* @param Model $model |
|||
* @return bool|void |
|||
*/ |
|||
// public static function onAfterRead(Model $model) |
|||
// { |
|||
// if (in_array(request()->action(), [ 'delete', 'status'])) { |
|||
// return true; |
|||
// } |
|||
// |
|||
// } |
|||
|
|||
// public static function onBeforeWrite(Model $model) |
|||
// { |
|||
// if (!in_array(request()->action(), ['add'])) { |
|||
// return; |
|||
// } |
|||
// |
|||
// } |
|||
|
|||
public function delModule($id){ |
|||
|
|||
if (strpos($id, ',') !== false) { |
|||
return -1; |
|||
} |
|||
|
|||
// 当有栏目使用该模块时不可删除 |
|||
// $count = \app\common\model\Cate::where('module_id', $id)->count(); |
|||
// if ($count) { |
|||
// return ['error' => 1, 'msg' => '删除失败,请先删除已使用该模块的栏目']; |
|||
// } |
|||
|
|||
$site_id = SITE_ID; |
|||
//获取module信息 |
|||
$m_model = new Module(); |
|||
|
|||
//获取模型信息 |
|||
$module_info = $m_model->find($id)->toArray(); |
|||
if(!$module_info){ |
|||
return -1; |
|||
} |
|||
|
|||
$table_name = $this->cms_table.'_'.$module_info['table_name'].'_'.$site_id; |
|||
|
|||
// 模块删除的同时删除字段管理中对应的数据 |
|||
$field_model = new \app\api\model\Field(); |
|||
$f_ids = $field_model->where('module_id', '=' , $id)->where('site_id', SITE_ID)->select()->toArray(); |
|||
$f_ids_str = ''; |
|||
$f_ids_arr = []; |
|||
foreach ($f_ids as $item){ |
|||
$f_ids_arr[] = $item['id']; |
|||
} |
|||
$f_ids_str = implode(',',$f_ids_arr); |
|||
if($f_ids_str){ |
|||
$field_model->parentDel($f_ids_str); |
|||
} |
|||
|
|||
// $field_model->where('module_id', $id)->delete(); |
|||
|
|||
$state = $this->parentDel($id); |
|||
if($state){ |
|||
//删除表 |
|||
$tables = Db::getTables(); |
|||
//表已存在不能创建该模型 需要修改表名 |
|||
if(in_array($table_name,$tables)){ |
|||
Db::execute("DROP TABLE `{$table_name}` "); |
|||
} |
|||
} |
|||
return $state; |
|||
} |
|||
|
|||
public function addModule(){ |
|||
$_param = $this->request->post(); |
|||
if(!$_param){ |
|||
return 0; |
|||
} |
|||
$site_id = SITE_ID; |
|||
$table_name = $this->cms_table.'_'.$_param['table_name'].'_'.$site_id; |
|||
$tables = Db::getTables(); |
|||
//表已存在不能创建该模型 需要修改表名 |
|||
if(in_array($table_name,$tables)){ |
|||
return 0; |
|||
}else{ |
|||
//添加数据 |
|||
$module_id = $this->parentAdd($_param); |
|||
|
|||
//创建表结构 |
|||
if($module_id>0){ |
|||
$sqlStr = "`id` int(11) unsigned NOT NULL AUTO_INCREMENT, " . |
|||
"`common_id` int(11) NOT NULL DEFAULT '0', "; |
|||
|
|||
$sql = "CREATE TABLE `{$table_name}` ( |
|||
{$sqlStr} |
|||
PRIMARY KEY (`id`) |
|||
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COMMENT='".$_param['table_comment']."'"; |
|||
Db::execute($sql); |
|||
$data = [ |
|||
['module_id' => $module_id, 'field' => 'id', 'name' => '编号', 'type' => 'hidden', 'is_list' => '1', 'status' => '1', 'sort' => '1', 'remark' => '自增ID', 'setup' => "array ('default' => '0','extra_attr' => '','extra_class' => '','step' => '1','fieldtype' => 'int','group' => '')",'is_system' => '1'], |
|||
['module_id' => $module_id, 'field' => 'site_id', 'name' => '网站编号', 'type' => 'hidden', 'is_list' => '1', 'status' => '1', 'sort' => '1', 'remark' => '', 'setup' => "array ('default' => '1','extra_attr' => '','extra_class' => '','step' => '','fieldtype' => 'int','group' => '')",'is_system' => '1'], |
|||
['title' => $module_id, 'field' => 'title', 'name' => '标题', 'type' => 'text', 'is_list' => '1','is_edit'=>'1','is_add'=>'1', 'status' => '1', 'remark' => '', 'setup' => "array ('default' => '','extra_attr' => '','extra_class' => '','step' => '','fieldtype' => 'varchar','group' => '')",'is_system' => '1'], |
|||
['module_id' => $module_id, 'field' => 'common_id', 'name' => '主表id', 'type' => 'hidden', 'is_list' => '1', 'status' => '1', 'sort' => '1', 'remark' => '', 'setup' => "array ('default' => '0','extra_attr' => '','extra_class' => '','step' => '','fieldtype' => 'int','group' => '')",'is_system' => '1'], |
|||
['module_id' => $module_id, 'field' => 'create_time', 'name' => '添加时间', 'maxlength' => '11', 'type' => 'datetime', 'is_list' => '1', 'search_type' => '=', 'status' => '1', 'sort' => '1', 'remark' => '添加时间', 'setup' => "array ('default' => '0', 'format' => '', 'extra_attr' => '', 'extra_class' => '', 'placeholder' => '', 'fieldtype' => 'int',)",'is_system' => '1'], |
|||
['module_id' => $module_id, 'field' => 'update_time', 'name' => '更新时间', 'maxlength' => '11', 'type' => 'datetime', 'is_list' => '1', 'search_type' => '=', 'status' => '1', 'sort' => '1', 'remark' => '更新时间', 'setup' => "array ('default' => '0', 'format' => '', 'extra_attr' => '', 'extra_class' => '', 'placeholder' => '', 'fieldtype' => 'int',)",'is_system' => '1'], |
|||
['module_id' => $module_id, 'field' => 'sort', 'name' => '排序', 'required' => '1', 'maxlength' => '8', 'type' => 'number', 'is_add' => '1', 'is_edit' => '1', 'is_list' => '1', 'is_sort' => '1', 'search_type' => '=', 'status' => '1', 'sort' => '1', 'remark' => '', 'setup' => "array ('default' => '50', 'extra_attr' => '', 'extra_class' => '', 'step' => '1', 'fieldtype' => 'int',)",'is_system' => '1'], |
|||
['module_id' => $module_id, 'field' => 'status', 'name' => '状态', 'required' => '1', 'maxlength' => '1', 'type' => 'radio', 'data_source' => '1', 'dict_code' => '1', 'is_add' => '1', 'is_edit' => '1', 'is_list' => '1', 'is_search' => '1', 'is_sort' => '0', 'search_type' => '=', 'status' => '1', 'sort' => '1', 'remark' => '', 'setup' => "array ('default' => '1', 'extra_attr' => '', 'extra_class' => '', 'fieldtype' => 'tinyint',)",'is_system' => '1'], |
|||
[ |
|||
'module_id' => $module_id, |
|||
'field' => 'cate_id', |
|||
'name' => '栏目', |
|||
'required' => '1', |
|||
'maxlength' => '0', |
|||
'type' => 'select', |
|||
'data_source' => '2', |
|||
'relation_model' => 'Cate', |
|||
'relation_field' => 'cate_name', |
|||
'is_add' => '1', |
|||
'is_edit' => '1', |
|||
'is_list' => '1', |
|||
'is_search' => '1', |
|||
'is_sort' => '0', |
|||
'search_type' => '=', |
|||
'status' => '1', |
|||
'sort' => '1', |
|||
'remark' => '栏目', |
|||
'setup' => "array ('default' => '0', 'extra_attr' => '', 'extra_class' => '', 'fieldtype' => 'tinyint',)" |
|||
,'is_system' => '1' |
|||
], |
|||
[ |
|||
'module_id' => $module_id, |
|||
'field' => 'hits', |
|||
'name' => '点击次数', |
|||
'required' => '0', |
|||
'maxlength' => '0', |
|||
'type' => 'number', |
|||
'data_source' => '0', |
|||
'relation_model' => '', |
|||
'relation_field' => '', |
|||
'is_add' => '1', |
|||
'is_edit' => '1', |
|||
'is_list' => '1', |
|||
'is_search' => '0', |
|||
'is_sort' => '1', |
|||
'search_type' => '=', |
|||
'status' => '1', |
|||
'sort' => '1', |
|||
'remark' => '点击次数', |
|||
'setup' => "array ('default' => '0', 'extra_attr' => '', 'extra_class' => '', 'step' => '1', 'fieldtype' => 'int', )" |
|||
,'is_system' => '1' |
|||
], |
|||
[ |
|||
'module_id' => $module_id, |
|||
'field' => 'keywords', |
|||
'name' => '关键词', |
|||
'required' => '0', |
|||
'maxlength' => '255', |
|||
'type' => 'text', |
|||
'data_source' => '0', |
|||
'relation_model' => '', |
|||
'relation_field' => '', |
|||
'is_add' => '1', |
|||
'is_edit' => '1', |
|||
'is_list' => '0', |
|||
'is_search' => '0', |
|||
'is_sort' => '0', |
|||
'search_type' => '=', |
|||
'status' => '1', |
|||
'sort' => '1', |
|||
'remark' => '关键词', |
|||
'setup' => "array ( 'default' => '', 'extra_attr' => '', 'extra_class' => '', 'placeholder' => '', 'fieldtype' => 'varchar', 'group' => '', )" |
|||
,'is_system' => '1' |
|||
], |
|||
[ |
|||
'module_id' => $module_id, |
|||
'field' => 'description', |
|||
'name' => '描述', |
|||
'required' => '0', |
|||
'maxlength' => '255', |
|||
'type' => 'textarea', |
|||
'data_source' => '0', |
|||
'relation_model' => '', |
|||
'relation_field' => '', |
|||
'is_add' => '1', |
|||
'is_edit' => '1', |
|||
'is_list' => '0', |
|||
'is_search' => '0', |
|||
'is_sort' => '0', |
|||
'search_type' => '=', |
|||
'status' => '1', |
|||
'sort' => '1', |
|||
'remark' => '描述', |
|||
'setup' => "array ( 'default' => '', 'extra_attr' => '', 'extra_class' => '', 'placeholder' => '', 'fieldtype' => 'varchar', )" |
|||
,'is_system' => '1' |
|||
], |
|||
[ |
|||
'module_id' => $module_id, |
|||
'field' => 'template', |
|||
'name' => '模板', |
|||
'tips' => '单独设置此条记录的模板,如:article_show.html 或 article_show', |
|||
'required' => '0', |
|||
'maxlength' => '30', |
|||
'type' => 'text', |
|||
'data_source' => '0', |
|||
'relation_model' => '', |
|||
'relation_field' => '', |
|||
'is_add' => '1', |
|||
'is_edit' => '1', |
|||
'is_list' => '0', |
|||
'is_search' => '0', |
|||
'is_sort' => '0', |
|||
'search_type' => '=', |
|||
'status' => '1', |
|||
'sort' => '1', |
|||
'remark' => '模板', |
|||
'setup' => "array ( 'default' => '', 'extra_attr' => '', 'extra_class' => '', 'placeholder' => '', 'fieldtype' => 'varchar', 'group' => '', )" |
|||
,'is_system' => '1' |
|||
], |
|||
[ |
|||
'module_id' => $module_id, |
|||
'field' => 'url', |
|||
'name' => '跳转地址', |
|||
'tips' => '如需直接跳转,请填写完整的网站地址或相对地址', |
|||
'required' => '0', |
|||
'maxlength' => '255', |
|||
'type' => 'text', |
|||
'data_source' => '0', |
|||
'relation_model' => '', |
|||
'relation_field' => '', |
|||
'is_add' => '1', |
|||
'is_edit' => '1', |
|||
'is_list' => '0', |
|||
'is_search' => '0', |
|||
'is_sort' => '0', |
|||
'search_type' => '=', |
|||
'status' => '1', |
|||
'sort' => '1', |
|||
'remark' => '跳转地址', |
|||
'setup' => "array ( 'default' => '', 'extra_attr' => '', 'extra_class' => '', 'placeholder' => '', 'fieldtype' => 'varchar', 'group' => '',)" |
|||
,'is_system' => '1' |
|||
] |
|||
]; |
|||
|
|||
$fild = new \app\api\model\Field(); |
|||
$fild->saveAll($data); |
|||
return $module_id; |
|||
}else{ |
|||
return $module_id; |
|||
} |
|||
} |
|||
} |
|||
|
|||
|
|||
/** |
|||
* 获取数据列表基类模型 |
|||
* @param null $_op 模型链式对象 |
|||
* @param int $ispage 是否分页,默认分页 |
|||
* @return array|\think\Collection |
|||
* @throws \think\db\exception\DataNotFoundException |
|||
* @throws \think\db\exception\DbException |
|||
* @throws \think\db\exception\ModelNotFoundException |
|||
*/ |
|||
public function parentLists($_op = null, $ispage = 1,$issite=true) |
|||
{ |
|||
//模型对象为空,设定默认查询对象 |
|||
if($issite){ |
|||
if (!is_object($_op) || empty($_op)) { |
|||
$_op = $this->where('site_id', SITE_ID); //没有默认where查询 这个一定要 否则获取不到下面的getOptions查询条件值 |
|||
} else { |
|||
$_op->where('site_id', SITE_ID); //强制绑定站点参数 |
|||
} |
|||
} |
|||
|
|||
|
|||
//公共搜索查询 |
|||
if (count($this->search_arr) > 0) { |
|||
$_param = request()->param(); //搜索参数集合 |
|||
$_op->where(function ($query) use ($_param) { |
|||
foreach ($this->search_arr as $k => $v) { |
|||
$search_arr = explode(':', $v); |
|||
$search_name = $search_arr[0]; |
|||
$logic = $search_arr[1] ?? 'AND'; |
|||
if (array_key_exists($search_name, $_param)) { |
|||
if (!empty($_param[$search_name])) { |
|||
$query->whereLike($search_name, "%{$_param[$search_name]}%", $logic); |
|||
} |
|||
} |
|||
} |
|||
}); |
|||
} |
|||
|
|||
//执行分页查询 |
|||
$page = $this->request->param('page', config('page')); |
|||
$limit = $this->request->param('limit', config('limit')); |
|||
$count = $_op->count(); |
|||
|
|||
$this->listsOrder($_op); //统一排序 |
|||
|
|||
//无分页判断 |
|||
$ispage != 1 ?: $_op->page((int)$page, (int)$limit); |
|||
|
|||
$_data = [ |
|||
'data' => $_op->select()->toArray(), |
|||
'page_total' => $count, |
|||
]; |
|||
return $_data; |
|||
} |
|||
|
|||
|
|||
|
|||
/** |
|||
* 数据排序 |
|||
*/ |
|||
private function listsOrder(&$_op) |
|||
{ |
|||
if ($_op->getOptions('order')) { |
|||
return; |
|||
} |
|||
$sort = $this->request->get('sort'); |
|||
$sort = in_array($sort, $this->checkAllowFields()) ? $sort : ''; |
|||
$order = $this->request->get('order', 'DESC', 'strtoupper') == 'ASC' ? 'ASC' : 'DESC'; |
|||
$sort_order = $sort . ' ' . $order; |
|||
if (empty($sort)) { |
|||
$sort_order = in_array('sort', $this->checkAllowFields()) ? 'sort DESC,create_time DESC' : 'create_time DESC'; |
|||
} |
|||
$_op->order($sort_order); |
|||
} |
|||
|
|||
|
|||
|
|||
|
|||
|
|||
} |
|||
@ -0,0 +1,98 @@ |
|||
<?php |
|||
declare (strict_types=1); |
|||
|
|||
namespace app\api\model; |
|||
|
|||
use app\Request; |
|||
use think\facade\Db; |
|||
use think\Model; |
|||
|
|||
/** |
|||
* @mixin think\Model |
|||
*/ |
|||
class SiteTemplate extends Common |
|||
{ |
|||
|
|||
protected $table = 'bmz_site_template'; |
|||
protected $table_template = 'system_templates'; |
|||
/** |
|||
* 管理员列表数据模型 |
|||
* @return array|\think\Collection |
|||
* @throws \think\db\exception\DataNotFoundException |
|||
* @throws \think\db\exception\DbException |
|||
* @throws \think\db\exception\ModelNotFoundException |
|||
*/ |
|||
public function index() |
|||
{ |
|||
|
|||
$this->search_arr = ['url','name']; |
|||
|
|||
$_op = $this->field('*'); |
|||
$_op->order('is_use desc ,id desc'); |
|||
|
|||
$data = parent::parentLists($_op); |
|||
|
|||
foreach ($data['data'] as $k=>&$item){ |
|||
$template = Db::table($this->table_template)->where('id',$item['template_id'])->find(); |
|||
if(empty($template)){ |
|||
unset($data['dta'][$k]); |
|||
continue; |
|||
} |
|||
$item['template'] = $template; |
|||
} |
|||
|
|||
//执行通用查询 |
|||
return $data; |
|||
} |
|||
|
|||
/** |
|||
* 切换当前站点的默认站点 |
|||
* @param array $_data |
|||
* @param null $_op 模型链式对象 |
|||
* @param $id |
|||
* @return bool|\type |
|||
* @throws \think\db\exception\DataNotFoundException |
|||
* @throws \think\db\exception\DbException |
|||
* @throws \think\db\exception\ModelNotFoundException |
|||
*/ |
|||
|
|||
public function changeDefaultTemplate(){ |
|||
|
|||
|
|||
$_data = $this->request->param(); |
|||
if (empty($_data) || !isset($_data['id']) || intval($_data['id']) == 0) { |
|||
return false; |
|||
} |
|||
$set_template_id = $_data['id']; |
|||
//获取当前默认id |
|||
$tempNow = Db::name('site')->where('id',SITE_ID)->find(); |
|||
|
|||
if(empty($tempNow)){ |
|||
return false; |
|||
} |
|||
// $template_id = $tempNow['use_template']; |
|||
$_data['is_use'] = 0; |
|||
$res = Db::name('site')->where('id',SITE_ID)->save(['use_template'=>$set_template_id,'update_time'=>time()]); |
|||
if($res){ |
|||
Db::table($this->table)->where('site_id',SITE_ID) |
|||
->save(['is_use'=>0,'update_time'=>time()]); |
|||
Db::table($this->table)->where('site_id',SITE_ID)->where('template_id',$set_template_id) |
|||
->save(['is_use'=>1,'update_time'=>time()]); |
|||
} |
|||
return true; |
|||
} |
|||
|
|||
/** |
|||
* 读取后 |
|||
* @param Model $model |
|||
* @return bool|void |
|||
*/ |
|||
public static function onAfterRead(Model $model) |
|||
{ |
|||
if (in_array(request()->action(), ['edit', 'delete', 'status'])) { |
|||
return true; |
|||
} |
|||
|
|||
} |
|||
|
|||
} |
|||
@ -0,0 +1,61 @@ |
|||
<?php |
|||
declare (strict_types=1); |
|||
|
|||
namespace app\api\validate; |
|||
|
|||
use think\facade\Db; |
|||
use think\Validate; |
|||
|
|||
class Cate extends Validate |
|||
{ |
|||
/** |
|||
* 定义验证规则 |
|||
* 格式:'字段名' => ['规则1','规则2'...] |
|||
* |
|||
* @var array |
|||
*/ |
|||
protected $rule = [ |
|||
'en_name|栏目英文名' => "require|uniqueSite:bmz_cate|length:1,50", |
|||
'cate_name|栏目名称' => 'require|length:1,100', |
|||
]; |
|||
|
|||
/** |
|||
* 定义错误信息 |
|||
* 格式:'字段名.规则名' => '错误信息' |
|||
* |
|||
* @var array |
|||
*/ |
|||
protected $message = [ |
|||
'en_name.require' => '请输入栏目英文名称', |
|||
'en_name.length' => '栏目英文名称必需在1~50位之间', |
|||
'en_name.uniqueSite' => '英文名称已存在', |
|||
'cate_name.require' => '请输入栏目名称', |
|||
'cate_name.length' => '栏目名称必需在1~50位之间', |
|||
]; |
|||
|
|||
/** |
|||
* 验证场景规则 |
|||
* @var array |
|||
*/ |
|||
protected $scene = [ |
|||
'read' => ['id'], |
|||
]; |
|||
|
|||
/** |
|||
* 修改场景验证 |
|||
* @return Manager |
|||
*/ |
|||
public function sceneUpdate() |
|||
{ |
|||
|
|||
} |
|||
|
|||
/** |
|||
* 自定义查询场景验证 可灵活设置验证字段 |
|||
* @return Manager |
|||
*/ |
|||
public function sceneLists() |
|||
{ |
|||
|
|||
} |
|||
} |
|||
@ -0,0 +1,58 @@ |
|||
<?php |
|||
declare (strict_types=1); |
|||
|
|||
namespace app\api\validate; |
|||
|
|||
use think\facade\Db; |
|||
use think\Validate; |
|||
|
|||
class CateRelation extends Validate |
|||
{ |
|||
/** |
|||
* 定义验证规则 |
|||
* 格式:'字段名' => ['规则1','规则2'...] |
|||
* |
|||
* @var array |
|||
*/ |
|||
protected $rule = [ |
|||
'idf|调用标志' => "require", |
|||
]; |
|||
|
|||
/** |
|||
* 定义错误信息 |
|||
* 格式:'字段名.规则名' => '错误信息' |
|||
* |
|||
* @var array |
|||
*/ |
|||
protected $message = [ |
|||
'idf.require' => '请输入调用英文名称', |
|||
'idf.length' => '调用必需在1~50位之间', |
|||
'idf.uniqueSite' => '名称已存在', |
|||
]; |
|||
|
|||
/** |
|||
* 验证场景规则 |
|||
* @var array |
|||
*/ |
|||
protected $scene = [ |
|||
'read' => ['id'], |
|||
]; |
|||
|
|||
/** |
|||
* 修改场景验证 |
|||
* @return Manager |
|||
*/ |
|||
public function sceneUpdate() |
|||
{ |
|||
|
|||
} |
|||
|
|||
/** |
|||
* 自定义查询场景验证 可灵活设置验证字段 |
|||
* @return Manager |
|||
*/ |
|||
public function sceneLists() |
|||
{ |
|||
|
|||
} |
|||
} |
|||
@ -0,0 +1,62 @@ |
|||
<?php |
|||
declare (strict_types=1); |
|||
|
|||
namespace app\api\validate; |
|||
|
|||
use think\facade\Db; |
|||
use think\Validate; |
|||
|
|||
class Debris extends Validate |
|||
{ |
|||
/** |
|||
* 定义验证规则 |
|||
* 格式:'字段名' => ['规则1','规则2'...] |
|||
* |
|||
* @var array |
|||
*/ |
|||
protected $rule = [ |
|||
'id' => 'number|length:1,10', |
|||
'name|调用名称' => "require|length:1,50", |
|||
'title|名称' => "require|length:1,50", |
|||
]; |
|||
|
|||
/** |
|||
* 定义错误信息 |
|||
* 格式:'字段名.规则名' => '错误信息' |
|||
* |
|||
* @var array |
|||
*/ |
|||
protected $message = [ |
|||
'name.require' => '请输入调用名称', |
|||
'name.length' => '调用名称必需在1~50位之间', |
|||
'title.require' => '请输入标题', |
|||
'title.length' => '标题必需在1~50位之间', |
|||
]; |
|||
|
|||
/** |
|||
* 验证场景规则 |
|||
* @var array |
|||
*/ |
|||
protected $scene = [ |
|||
'read' => ['id'], |
|||
]; |
|||
|
|||
/** |
|||
* 修改场景验证 |
|||
* @return Manager |
|||
*/ |
|||
public function sceneUpdate() |
|||
{ |
|||
return $this->remove('name', 'require'); |
|||
return $this->remove('title', 'require'); |
|||
} |
|||
|
|||
/** |
|||
* 自定义查询场景验证 可灵活设置验证字段 |
|||
* @return Manager |
|||
*/ |
|||
public function sceneLists() |
|||
{ |
|||
|
|||
} |
|||
} |
|||
@ -0,0 +1,66 @@ |
|||
<?php |
|||
declare (strict_types=1); |
|||
|
|||
namespace app\api\validate; |
|||
|
|||
use think\facade\Db; |
|||
use think\Validate; |
|||
|
|||
class Field extends Validate |
|||
{ |
|||
/** |
|||
* 定义验证规则 |
|||
* 格式:'字段名' => ['规则1','规则2'...] |
|||
* |
|||
* @var array |
|||
*/ |
|||
protected $rule = [ |
|||
'id' => 'number|length:1,10', |
|||
'module_id' => "require|number|length:1,50", |
|||
'sort' => 'number', |
|||
'field' => 'require|length:1,50', |
|||
'name' => 'require|length:1,50', |
|||
]; |
|||
|
|||
/** |
|||
* 定义错误信息 |
|||
* 格式:'字段名.规则名' => '错误信息' |
|||
* |
|||
* @var array |
|||
*/ |
|||
protected $message = [ |
|||
'field.require' => '请输入字段名称', |
|||
'field.length' => '字段名称长度在1-50', |
|||
'name.require' => '请输入字段别名', |
|||
'name.length' => '字段别名长度在1-50', |
|||
'module_id.require' => '请输入模块ID', |
|||
'module_id.number' => '模块ID必须是数字', |
|||
'module_id.length' => '模块ID需在1~50位之间', |
|||
]; |
|||
|
|||
/** |
|||
* 验证场景规则 |
|||
* @var array |
|||
*/ |
|||
protected $scene = [ |
|||
'read' => ['id'], |
|||
]; |
|||
|
|||
/** |
|||
* 修改场景验证 |
|||
* @return Manager |
|||
*/ |
|||
public function sceneUpdate() |
|||
{ |
|||
// return $this->remove('name', 'require'); |
|||
} |
|||
|
|||
/** |
|||
* 自定义查询场景验证 可灵活设置验证字段 |
|||
* @return Manager |
|||
*/ |
|||
public function sceneLists() |
|||
{ |
|||
|
|||
} |
|||
} |
|||
@ -0,0 +1,59 @@ |
|||
<?php |
|||
declare (strict_types=1); |
|||
|
|||
namespace app\api\validate; |
|||
|
|||
use think\facade\Db; |
|||
use think\Validate; |
|||
|
|||
class Link extends Validate |
|||
{ |
|||
/** |
|||
* 定义验证规则 |
|||
* 格式:'字段名' => ['规则1','规则2'...] |
|||
* |
|||
* @var array |
|||
*/ |
|||
protected $rule = [ |
|||
'id' => 'number|length:1,10', |
|||
'name|名称' => "require|length:1,50", |
|||
]; |
|||
|
|||
/** |
|||
* 定义错误信息 |
|||
* 格式:'字段名.规则名' => '错误信息' |
|||
* |
|||
* @var array |
|||
*/ |
|||
protected $message = [ |
|||
'name.require' => '请输入调用名称', |
|||
'name.length' => '调用名称必需在1~50位之间', |
|||
|
|||
]; |
|||
|
|||
/** |
|||
* 验证场景规则 |
|||
* @var array |
|||
*/ |
|||
protected $scene = [ |
|||
'read' => ['id'], |
|||
]; |
|||
|
|||
/** |
|||
* 修改场景验证 |
|||
* @return Manager |
|||
*/ |
|||
public function sceneUpdate() |
|||
{ |
|||
return $this->remove('name', 'require'); |
|||
} |
|||
|
|||
/** |
|||
* 自定义查询场景验证 可灵活设置验证字段 |
|||
* @return Manager |
|||
*/ |
|||
public function sceneLists() |
|||
{ |
|||
|
|||
} |
|||
} |
|||
@ -0,0 +1,68 @@ |
|||
<?php |
|||
declare (strict_types=1); |
|||
|
|||
namespace app\api\validate; |
|||
|
|||
use think\facade\Db; |
|||
use think\Validate; |
|||
|
|||
class Module extends Validate |
|||
{ |
|||
/** |
|||
* 定义验证规则 |
|||
* 格式:'字段名' => ['规则1','规则2'...] |
|||
* |
|||
* @var array |
|||
*/ |
|||
protected $rule = [ |
|||
'id' => 'number|length:1,10', |
|||
'module_name|模块名称' => "require|length:1,100", |
|||
'table_name|表名称' => "require|length:1,50", |
|||
'model_name|模型名称' => "require|length:1,50", |
|||
'table_comment|表描述' => "require|length:1,50", |
|||
]; |
|||
|
|||
/** |
|||
* 定义错误信息 |
|||
* 格式:'字段名.规则名' => '错误信息' |
|||
* |
|||
* @var array |
|||
*/ |
|||
protected $message = [ |
|||
'module_name.require' => '请输入模块名称', |
|||
'module_name.length' => '模块名称必需在1~100位之间', |
|||
'table_name.require' => '请输入表名称', |
|||
'table_name.length' => '表名称必需在1~100位之间', |
|||
'model_name.require' => '请输入模型名称', |
|||
'model_name.length' => '模型名称必需在1~100位之间', |
|||
'table_comment.require' => '请输入表描述', |
|||
'table_comment.length' => '表描述必需在1~100位之间', |
|||
|
|||
]; |
|||
|
|||
/** |
|||
* 验证场景规则 |
|||
* @var array |
|||
*/ |
|||
protected $scene = [ |
|||
'read' => ['id'], |
|||
]; |
|||
|
|||
/** |
|||
* 修改场景验证 |
|||
* @return Manager |
|||
*/ |
|||
public function sceneUpdate() |
|||
{ |
|||
return $this->remove('module_name', 'require'); |
|||
} |
|||
|
|||
/** |
|||
* 自定义查询场景验证 可灵活设置验证字段 |
|||
* @return Manager |
|||
*/ |
|||
public function sceneLists() |
|||
{ |
|||
|
|||
} |
|||
} |
|||
@ -0,0 +1,142 @@ |
|||
<?php |
|||
|
|||
return [ |
|||
'base_module'=>['article','message','page'], |
|||
'field_types'=> [ |
|||
'text'=>'单行文本', |
|||
'textarea'=>'多行文本', |
|||
'radio'=>'单选按钮', |
|||
// 'checkbox'=>'多选按钮', |
|||
'date'=>'日期', |
|||
// 'time'=>'时间', |
|||
'datetime'=>'日期时间', |
|||
'daterange'=>'日期范围', |
|||
// 'tag'=>'标签', |
|||
'number'=>'数字', |
|||
'password'=>'密码', |
|||
'select'=>'下拉菜单', |
|||
// 'select2'=>'高级下拉菜单', |
|||
'image'=>'单张图片', |
|||
'images'=>'多张图片', |
|||
'file'=>'单文件上传', |
|||
// 'files'=>'多文件上传', |
|||
'editor'=>'编辑器', |
|||
// 'hidden'=>'隐藏域', |
|||
], |
|||
'data_orig'=>[ |
|||
0 => '字段本身', |
|||
1 => '系统字典', |
|||
3 => '关联模型', |
|||
], |
|||
'field_set_ups'=> [ |
|||
'text' => [ |
|||
'default' => '', |
|||
'extra_attr' => '', |
|||
'extra_class' => '', |
|||
'fieldtype' => 'varchar', |
|||
], |
|||
'textarea'=> [ |
|||
'default' => '', |
|||
'extra_attr' => '', |
|||
'extra_class' => '', |
|||
'fieldtype' => 'text', |
|||
], |
|||
'radio'=>[ |
|||
'default' => '', |
|||
'extra_attr' => '', |
|||
'extra_class' => '', |
|||
'fieldtype' => 'varchar', |
|||
], |
|||
'checkbox'=> [ |
|||
'default' => '', |
|||
'extra_attr' => '', |
|||
'extra_class' => '', |
|||
'fieldtype' => 'varchar', |
|||
], |
|||
'date'=> [ |
|||
'default' => '', |
|||
'extra_attr' => '', |
|||
'extra_class' => '', |
|||
'fieldtype' => 'varchar', |
|||
], |
|||
'time'=> [ |
|||
'default' => '', |
|||
'extra_attr' => '', |
|||
'extra_class' => '', |
|||
'fieldtype' => 'int', |
|||
], |
|||
'datetime' => [ |
|||
'default' => '', |
|||
'extra_attr' => '', |
|||
'extra_class' => '', |
|||
'fieldtype' => 'int', |
|||
], |
|||
'daterange' => [ |
|||
'default' => '', |
|||
'extra_attr' => '', |
|||
'extra_class' => '', |
|||
'fieldtype' => 'varchar', |
|||
], |
|||
'tag' => [ |
|||
'default' => '', |
|||
'extra_attr' => '', |
|||
'extra_class' => '', |
|||
'fieldtype' => 'varchar', |
|||
], |
|||
'number'=> [ |
|||
'default' => '0', |
|||
'extra_attr' => '', |
|||
'extra_class' => '', |
|||
'fieldtype' => 'int', |
|||
], |
|||
'password' => [ |
|||
'default' => '', |
|||
'extra_attr' => '', |
|||
'extra_class' => '', |
|||
'fieldtype' => 'varchar', |
|||
], |
|||
'select'=> [ |
|||
'default' => '', |
|||
'extra_attr' => '', |
|||
'extra_class' => '', |
|||
'fieldtype' => 'varchar', |
|||
], |
|||
'select2'=>[ |
|||
'default' => '', |
|||
'extra_attr' => '', |
|||
'extra_class' => '', |
|||
'fieldtype' => 'varchar', |
|||
], |
|||
'image'=>[ |
|||
'default' => '', |
|||
'extra_attr' => '', |
|||
'extra_class' => '', |
|||
'fieldtype' => 'varchar', |
|||
], |
|||
'images'=>[ |
|||
'default' => '', |
|||
'extra_attr' => '', |
|||
'extra_class' => '', |
|||
'fieldtype' => 'text', |
|||
], |
|||
'file'=>[ |
|||
'default' => '', |
|||
'extra_attr' => '', |
|||
'extra_class' => '', |
|||
'fieldtype' => 'varchar', |
|||
], |
|||
'files'=>[ |
|||
'default' => '', |
|||
'extra_attr' => '', |
|||
'extra_class' => '', |
|||
'fieldtype' => 'text', |
|||
], |
|||
'editor'=>[ |
|||
'default' => '', |
|||
'extra_attr' => '', |
|||
'extra_class' => '', |
|||
'fieldtype' => 'longtext', |
|||
], |
|||
// 'hidden'=>'隐藏域', |
|||
], |
|||
]; |
|||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
File diff suppressed because it is too large
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
@ -1,91 +0,0 @@ |
|||
[2021-04-06T21:43:42+08:00][error] [0]Error while decoding from JSON |
|||
[2021-04-06T21:44:05+08:00][error] [0]Error while decoding from JSON |
|||
[2021-04-06T21:44:05+08:00][error] [0]Error while decoding from JSON |
|||
[2021-04-06T21:44:13+08:00][error] [0]Error while decoding from JSON |
|||
[2021-04-06T21:44:13+08:00][error] [0]Error while decoding from JSON |
|||
[2021-04-06T21:45:42+08:00][sql] CONNECT:[ UseTime:0.093405s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-04-06T21:45:42+08:00][sql] SHOW FULL COLUMNS FROM `system_upload_log` [ RunTime:0.055836s ] |
|||
[2021-04-06T21:45:42+08:00][sql] SHOW FULL COLUMNS FROM `bmz_site` [ RunTime:0.061139s ] |
|||
[2021-04-06T21:45:42+08:00][sql] SELECT * FROM `bmz_site` WHERE ( `id` = 1 ) AND `bmz_site`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.057020s ] |
|||
[2021-04-06T21:45:42+08:00][sql] SELECT DISTINCT COUNT(*) AS think_count FROM `system_upload_log` WHERE ( `host` IN ('api.base.ahbmz.com','localhost:8080') ) AND `system_upload_log`.`delete_time` IS NULL [ RunTime:0.056646s ] |
|||
[2021-04-06T21:45:42+08:00][sql] SELECT DISTINCT host as name,1 as isDirectory FROM `system_upload_log` WHERE ( `host` IN ('api.base.ahbmz.com','localhost:8080') ) AND `system_upload_log`.`delete_time` IS NULL ORDER BY `create_time` DESC LIMIT 0,20 [ RunTime:0.059582s ] |
|||
[2021-04-06T21:45:42+08:00][sql] SELECT COUNT(*) AS think_count FROM ( SELECT `host`,count(*) AS think_count FROM `system_upload_log` WHERE `system_upload_log`.`delete_time` IS NULL GROUP BY `host` ) `_group_count_` [ RunTime:0.060695s ] |
|||
[2021-04-06T21:45:46+08:00][sql] CONNECT:[ UseTime:0.095597s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-04-06T21:45:46+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.056321s ] |
|||
[2021-04-06T21:45:46+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.055146s ] |
|||
[2021-04-06T21:45:46+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.061064s ] |
|||
[2021-04-06T21:45:46+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.061473s ] |
|||
[2021-04-06T21:45:46+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,26,192,3,11,189,4,14,190,191) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.059288s ] |
|||
[2021-04-06T21:45:46+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.053205s ] |
|||
[2021-04-06T21:45:47+08:00][sql] CONNECT:[ UseTime:0.089711s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-04-06T21:45:47+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.050608s ] |
|||
[2021-04-06T21:45:47+08:00][sql] SELECT * FROM `system_user` WHERE ( `site_id` = 1 AND `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.058246s ] |
|||
[2021-04-06T21:45:47+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.055073s ] |
|||
[2021-04-06T21:45:47+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.060422s ] |
|||
[2021-04-06T21:45:47+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.053539s ] |
|||
[2021-04-06T21:45:47+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,26,192,3,11,189,4,14,190,191) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.053777s ] |
|||
[2021-04-06T21:45:47+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.058205s ] |
|||
[2021-04-06T21:45:50+08:00][sql] CONNECT:[ UseTime:0.087924s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-04-06T21:45:50+08:00][sql] SHOW FULL COLUMNS FROM `bmz_config` [ RunTime:0.063088s ] |
|||
[2021-04-06T21:45:50+08:00][sql] SELECT COUNT(*) AS think_count FROM `bmz_config` WHERE ( `site_id` = 1 ) AND `bmz_config`.`delete_time` IS NULL [ RunTime:0.061337s ] |
|||
[2021-04-06T21:45:50+08:00][sql] SELECT * FROM `bmz_config` WHERE ( `site_id` = 1 ) AND `bmz_config`.`delete_time` IS NULL ORDER BY `create_time` DESC [ RunTime:0.061609s ] |
|||
[2021-04-06T21:45:53+08:00][sql] CONNECT:[ UseTime:0.091697s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-04-06T21:45:53+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group` [ RunTime:0.063070s ] |
|||
[2021-04-06T21:45:53+08:00][sql] SELECT * FROM `system_auth_group` WHERE `site_id` = 1 AND `type` = 1 LIMIT 0,10 [ RunTime:0.054913s ] |
|||
[2021-04-06T21:45:55+08:00][sql] CONNECT:[ UseTime:0.103496s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-04-06T21:45:55+08:00][sql] SHOW FULL COLUMNS FROM `system_dictionary_type` [ RunTime:0.065795s ] |
|||
[2021-04-06T21:45:55+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_dictionary_type` WHERE ( `site_id` = 1 ) AND `system_dictionary_type`.`delete_time` IS NULL [ RunTime:0.066893s ] |
|||
[2021-04-06T21:45:55+08:00][sql] SELECT * FROM `system_dictionary_type` WHERE ( `site_id` = 1 ) AND `system_dictionary_type`.`delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC LIMIT 0,10 [ RunTime:0.066881s ] |
|||
[2021-04-06T21:45:55+08:00][sql] SELECT `a`.`dict_symbol`,`b`.`dict_name`,`b`.`dict_value` FROM `system_dictionary_type` `a` LEFT JOIN `system_dictionary` `b` ON `a`.`id`=`b`.`dict_type_id` WHERE ( `b`.`delete_time` IS NULL ) AND `a`.`delete_time` IS NULL [ RunTime:0.079592s ] |
|||
[2021-04-06T21:45:56+08:00][sql] CONNECT:[ UseTime:0.093177s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-04-06T21:45:56+08:00][sql] SHOW FULL COLUMNS FROM `system_dictionary` [ RunTime:0.070068s ] |
|||
[2021-04-06T21:45:56+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_dictionary` WHERE ( `dict_type_id` = 20 AND `site_id` = 1 ) AND `system_dictionary`.`delete_time` IS NULL [ RunTime:0.068353s ] |
|||
[2021-04-06T21:45:56+08:00][sql] SELECT * FROM `system_dictionary` WHERE ( `dict_type_id` = 20 AND `site_id` = 1 ) AND `system_dictionary`.`delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC LIMIT 0,10 [ RunTime:0.066531s ] |
|||
[2021-04-06T21:45:57+08:00][sql] CONNECT:[ UseTime:0.092935s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-04-06T21:45:57+08:00][sql] SHOW FULL COLUMNS FROM `system_dictionary` [ RunTime:0.057150s ] |
|||
[2021-04-06T21:45:57+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_dictionary` WHERE ( `dict_type_id` = 19 AND `site_id` = 1 ) AND `system_dictionary`.`delete_time` IS NULL [ RunTime:0.049748s ] |
|||
[2021-04-06T21:45:57+08:00][sql] SELECT * FROM `system_dictionary` WHERE ( `dict_type_id` = 19 AND `site_id` = 1 ) AND `system_dictionary`.`delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC LIMIT 0,10 [ RunTime:0.055404s ] |
|||
[2021-04-06T21:46:01+08:00][sql] CONNECT:[ UseTime:0.095561s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-04-06T21:46:01+08:00][sql] SHOW FULL COLUMNS FROM `system_upload_log` [ RunTime:0.066988s ] |
|||
[2021-04-06T21:46:01+08:00][sql] SHOW FULL COLUMNS FROM `bmz_site` [ RunTime:0.062463s ] |
|||
[2021-04-06T21:46:01+08:00][sql] SELECT * FROM `bmz_site` WHERE ( `id` = 1 ) AND `bmz_site`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.064479s ] |
|||
[2021-04-06T21:46:01+08:00][sql] SELECT DISTINCT COUNT(*) AS think_count FROM `system_upload_log` WHERE ( `host` IN ('api.base.ahbmz.com','localhost:8080') ) AND `system_upload_log`.`delete_time` IS NULL [ RunTime:0.056745s ] |
|||
[2021-04-06T21:46:01+08:00][sql] SELECT DISTINCT host as name,1 as isDirectory FROM `system_upload_log` WHERE ( `host` IN ('api.base.ahbmz.com','localhost:8080') ) AND `system_upload_log`.`delete_time` IS NULL ORDER BY `create_time` DESC LIMIT 0,10 [ RunTime:0.058544s ] |
|||
[2021-04-06T21:46:01+08:00][sql] SELECT COUNT(*) AS think_count FROM ( SELECT `host`,count(*) AS think_count FROM `system_upload_log` WHERE `system_upload_log`.`delete_time` IS NULL GROUP BY `host` ) `_group_count_` [ RunTime:0.063881s ] |
|||
[2021-04-06T21:46:03+08:00][sql] CONNECT:[ UseTime:0.074881s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-04-06T21:46:03+08:00][sql] SHOW FULL COLUMNS FROM `system_upload_log` [ RunTime:0.046476s ] |
|||
[2021-04-06T21:46:03+08:00][sql] SHOW FULL COLUMNS FROM `bmz_site` [ RunTime:0.052292s ] |
|||
[2021-04-06T21:46:03+08:00][sql] SELECT * FROM `bmz_site` WHERE ( `id` = 1 ) AND `bmz_site`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.051585s ] |
|||
[2021-04-06T21:46:03+08:00][sql] SELECT DISTINCT COUNT(*) AS think_count FROM `system_upload_log` WHERE ( `host` = 'localhost:8080' ) AND `system_upload_log`.`delete_time` IS NULL [ RunTime:0.048960s ] |
|||
[2021-04-06T21:46:03+08:00][sql] SELECT DISTINCT y as name,1 as isDirectory FROM `system_upload_log` WHERE ( `host` = 'localhost:8080' ) AND `system_upload_log`.`delete_time` IS NULL ORDER BY `create_time` DESC LIMIT 0,10 [ RunTime:0.050072s ] |
|||
[2021-04-06T21:46:03+08:00][sql] SELECT COUNT(*) AS think_count FROM ( SELECT `y`,count(*) AS think_count FROM `system_upload_log` WHERE ( `host` = 'localhost:8080' ) AND `system_upload_log`.`delete_time` IS NULL GROUP BY `y` ) `_group_count_` [ RunTime:0.045939s ] |
|||
[2021-04-06T21:46:05+08:00][sql] CONNECT:[ UseTime:0.081313s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-04-06T21:46:05+08:00][sql] SHOW FULL COLUMNS FROM `system_upload_log` [ RunTime:0.062863s ] |
|||
[2021-04-06T21:46:05+08:00][sql] SHOW FULL COLUMNS FROM `bmz_site` [ RunTime:0.054479s ] |
|||
[2021-04-06T21:46:05+08:00][sql] SELECT * FROM `bmz_site` WHERE ( `id` = 1 ) AND `bmz_site`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.054558s ] |
|||
[2021-04-06T21:46:05+08:00][sql] SELECT DISTINCT COUNT(*) AS think_count FROM `system_upload_log` WHERE ( `host` = 'localhost:8080' AND `Y` = '2021' ) AND `system_upload_log`.`delete_time` IS NULL [ RunTime:0.058930s ] |
|||
[2021-04-06T21:46:05+08:00][sql] SELECT DISTINCT date as name,1 as isDirectory FROM `system_upload_log` WHERE ( `host` = 'localhost:8080' AND `Y` = '2021' ) AND `system_upload_log`.`delete_time` IS NULL ORDER BY `create_time` DESC LIMIT 0,10 [ RunTime:0.055213s ] |
|||
[2021-04-06T21:46:05+08:00][sql] SELECT COUNT(*) AS think_count FROM ( SELECT `date`,count(*) AS think_count FROM `system_upload_log` WHERE ( `host` = 'localhost:8080' AND `Y` = '2021' ) AND `system_upload_log`.`delete_time` IS NULL GROUP BY `date` ) `_group_count_` [ RunTime:0.053103s ] |
|||
[2021-04-06T21:46:17+08:00][sql] CONNECT:[ UseTime:0.090105s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-04-06T21:46:17+08:00][sql] SHOW FULL COLUMNS FROM `system_upload_log` [ RunTime:0.055281s ] |
|||
[2021-04-06T21:46:17+08:00][sql] SHOW FULL COLUMNS FROM `bmz_site` [ RunTime:0.054473s ] |
|||
[2021-04-06T21:46:17+08:00][sql] SELECT * FROM `bmz_site` WHERE ( `id` = 1 ) AND `bmz_site`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.055888s ] |
|||
[2021-04-06T21:46:17+08:00][sql] SELECT DISTINCT COUNT(*) AS think_count FROM `system_upload_log` WHERE ( `host` = 'localhost:8080' AND `Y` = '2021' AND `date` = '0331' ) AND `system_upload_log`.`delete_time` IS NULL [ RunTime:0.055528s ] |
|||
[2021-04-06T21:46:17+08:00][sql] SELECT DISTINCT `url`,`name`,`type`,`size`,0 as isDirectory,`update_time`,`id` FROM `system_upload_log` WHERE ( `host` = 'localhost:8080' AND `Y` = '2021' AND `date` = '0331' ) AND `system_upload_log`.`delete_time` IS NULL ORDER BY `create_time` DESC LIMIT 0,10 [ RunTime:0.055949s ] |
|||
[2021-04-06T21:46:17+08:00][sql] SELECT COUNT(*) AS think_count FROM ( SELECT `url`,count(*) AS think_count FROM `system_upload_log` WHERE ( `host` = 'localhost:8080' AND `Y` = '2021' AND `date` = '0331' ) AND `system_upload_log`.`delete_time` IS NULL GROUP BY `url` ) `_group_count_` [ RunTime:0.056087s ] |
|||
[2021-04-06T21:52:05+08:00][sql] CONNECT:[ UseTime:0.083277s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-04-06T21:52:05+08:00][sql] SHOW FULL COLUMNS FROM `system_upload_log` [ RunTime:0.055125s ] |
|||
[2021-04-06T21:52:05+08:00][sql] SHOW FULL COLUMNS FROM `bmz_site` [ RunTime:0.060332s ] |
|||
[2021-04-06T21:52:05+08:00][sql] SELECT * FROM `bmz_site` WHERE ( `id` = 1 ) AND `bmz_site`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.108226s ] |
|||
[2021-04-06T21:52:05+08:00][sql] SELECT DISTINCT COUNT(*) AS think_count FROM `system_upload_log` WHERE ( `host` = 'localhost:8080' AND `Y` = '2021' ) AND `system_upload_log`.`delete_time` IS NULL [ RunTime:0.052839s ] |
|||
[2021-04-06T21:52:05+08:00][sql] SELECT DISTINCT date as name,1 as isDirectory FROM `system_upload_log` WHERE ( `host` = 'localhost:8080' AND `Y` = '2021' ) AND `system_upload_log`.`delete_time` IS NULL ORDER BY `create_time` DESC LIMIT 0,10 [ RunTime:0.060713s ] |
|||
[2021-04-06T21:52:05+08:00][sql] SELECT COUNT(*) AS think_count FROM ( SELECT `date`,count(*) AS think_count FROM `system_upload_log` WHERE ( `host` = 'localhost:8080' AND `Y` = '2021' ) AND `system_upload_log`.`delete_time` IS NULL GROUP BY `date` ) `_group_count_` [ RunTime:0.055718s ] |
|||
[2021-04-06T21:52:13+08:00][sql] CONNECT:[ UseTime:0.085001s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-04-06T21:52:13+08:00][sql] SHOW FULL COLUMNS FROM `system_dictionary_type` [ RunTime:0.054287s ] |
|||
[2021-04-06T21:52:13+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_dictionary_type` WHERE ( `site_id` = 1 ) AND `system_dictionary_type`.`delete_time` IS NULL [ RunTime:0.050058s ] |
|||
[2021-04-06T21:52:13+08:00][sql] SELECT * FROM `system_dictionary_type` WHERE ( `site_id` = 1 ) AND `system_dictionary_type`.`delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC LIMIT 0,10 [ RunTime:0.051401s ] |
|||
[2021-04-06T21:52:13+08:00][sql] SELECT `a`.`dict_symbol`,`b`.`dict_name`,`b`.`dict_value` FROM `system_dictionary_type` `a` LEFT JOIN `system_dictionary` `b` ON `a`.`id`=`b`.`dict_type_id` WHERE ( `b`.`delete_time` IS NULL ) AND `a`.`delete_time` IS NULL [ RunTime:0.058804s ] |
|||
[2021-04-06T21:52:13+08:00][sql] CONNECT:[ UseTime:0.090387s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-04-06T21:52:13+08:00][sql] SHOW FULL COLUMNS FROM `system_dictionary` [ RunTime:0.060919s ] |
|||
[2021-04-06T21:52:13+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_dictionary` WHERE ( `dict_type_id` = 20 AND `site_id` = 1 ) AND `system_dictionary`.`delete_time` IS NULL [ RunTime:0.057994s ] |
|||
[2021-04-06T21:52:13+08:00][sql] SELECT * FROM `system_dictionary` WHERE ( `dict_type_id` = 20 AND `site_id` = 1 ) AND `system_dictionary`.`delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC LIMIT 0,10 [ RunTime:0.056317s ] |
|||
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
File diff suppressed because one or more lines are too long
@ -1,745 +0,0 @@ |
|||
[2021-05-06T17:19:41+08:00][sql] CONNECT:[ UseTime:0.119431s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:19:41+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.049210s ] |
|||
[2021-05-06T17:19:41+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.052808s ] |
|||
[2021-05-06T17:19:41+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.053565s ] |
|||
[2021-05-06T17:19:41+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.054930s ] |
|||
[2021-05-06T17:19:41+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,26,192,198,200,3,11,189,4,14,199,190,191,197) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.051659s ] |
|||
[2021-05-06T17:19:41+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.072532s ] |
|||
[2021-05-06T17:19:42+08:00][sql] CONNECT:[ UseTime:0.087098s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:19:42+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.055792s ] |
|||
[2021-05-06T17:19:42+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.068908s ] |
|||
[2021-05-06T17:19:42+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.053495s ] |
|||
[2021-05-06T17:19:42+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.055167s ] |
|||
[2021-05-06T17:19:42+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.057004s ] |
|||
[2021-05-06T17:19:42+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.049917s ] |
|||
[2021-05-06T17:19:42+08:00][sql] CONNECT:[ UseTime:0.104939s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:19:42+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.071027s ] |
|||
[2021-05-06T17:19:42+08:00][sql] SELECT * FROM `system_user` WHERE ( `site_id` = 1 AND `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.070205s ] |
|||
[2021-05-06T17:19:42+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.060284s ] |
|||
[2021-05-06T17:19:42+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.056657s ] |
|||
[2021-05-06T17:19:42+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.054489s ] |
|||
[2021-05-06T17:19:42+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,26,192,198,200,3,11,189,4,14,199,190,191,197) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.059384s ] |
|||
[2021-05-06T17:19:42+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.060457s ] |
|||
[2021-05-06T17:20:03+08:00][sql] CONNECT:[ UseTime:0.094046s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:20:03+08:00][sql] SHOW FULL COLUMNS FROM `system_upload_log` [ RunTime:0.060265s ] |
|||
[2021-05-06T17:20:03+08:00][sql] CONNECT:[ UseTime:0.096048s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:20:03+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group` [ RunTime:0.057685s ] |
|||
[2021-05-06T17:20:03+08:00][sql] SELECT * FROM `system_auth_group` WHERE `site_id` = 1 AND `type` = 1 LIMIT 0,10 [ RunTime:0.059909s ] |
|||
[2021-05-06T17:20:03+08:00][sql] CONNECT:[ UseTime:0.082025s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:20:03+08:00][sql] SHOW FULL COLUMNS FROM `system_image_storages` [ RunTime:0.054042s ] |
|||
[2021-05-06T17:20:03+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_image_storages` WHERE `system_image_storages`.`delete_time` IS NULL [ RunTime:0.048770s ] |
|||
[2021-05-06T17:20:03+08:00][sql] SELECT * FROM `system_image_storages` WHERE `system_image_storages`.`delete_time` IS NULL [ RunTime:0.053623s ] |
|||
[2021-05-06T17:21:50+08:00][sql] CONNECT:[ UseTime:0.091402s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:21:50+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.057436s ] |
|||
[2021-05-06T17:21:50+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.065805s ] |
|||
[2021-05-06T17:21:50+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.062939s ] |
|||
[2021-05-06T17:21:50+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.061560s ] |
|||
[2021-05-06T17:21:50+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,26,192,198,200,3,11,189,4,14,199,190,191,197) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.096986s ] |
|||
[2021-05-06T17:21:50+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.064391s ] |
|||
[2021-05-06T17:21:51+08:00][sql] CONNECT:[ UseTime:0.061777s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:21:51+08:00][sql] SHOW FULL COLUMNS FROM `system_upload_log` [ RunTime:0.042156s ] |
|||
[2021-05-06T17:21:51+08:00][sql] CONNECT:[ UseTime:0.084128s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:21:51+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group` [ RunTime:0.062323s ] |
|||
[2021-05-06T17:21:51+08:00][sql] SELECT * FROM `system_auth_group` WHERE `site_id` = 1 AND `type` = 1 LIMIT 0,10 [ RunTime:0.060616s ] |
|||
[2021-05-06T17:21:51+08:00][sql] CONNECT:[ UseTime:0.079920s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:21:51+08:00][sql] SHOW FULL COLUMNS FROM `system_image_storages` [ RunTime:0.054664s ] |
|||
[2021-05-06T17:21:51+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_image_storages` WHERE `system_image_storages`.`delete_time` IS NULL [ RunTime:0.072862s ] |
|||
[2021-05-06T17:21:51+08:00][sql] SELECT * FROM `system_image_storages` WHERE `system_image_storages`.`delete_time` IS NULL [ RunTime:0.067369s ] |
|||
[2021-05-06T17:21:51+08:00][sql] CONNECT:[ UseTime:0.079637s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:21:51+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.056138s ] |
|||
[2021-05-06T17:21:51+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.066001s ] |
|||
[2021-05-06T17:21:51+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.066620s ] |
|||
[2021-05-06T17:21:51+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.071288s ] |
|||
[2021-05-06T17:21:51+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.084091s ] |
|||
[2021-05-06T17:21:51+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.100931s ] |
|||
[2021-05-06T17:21:51+08:00][sql] CONNECT:[ UseTime:0.102799s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:21:51+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.075912s ] |
|||
[2021-05-06T17:21:51+08:00][sql] SELECT * FROM `system_user` WHERE ( `site_id` = 1 AND `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.081791s ] |
|||
[2021-05-06T17:21:51+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.091456s ] |
|||
[2021-05-06T17:21:51+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.130615s ] |
|||
[2021-05-06T17:21:51+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.089134s ] |
|||
[2021-05-06T17:21:51+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,26,192,198,200,3,11,189,4,14,199,190,191,197) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.102157s ] |
|||
[2021-05-06T17:21:51+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.080196s ] |
|||
[2021-05-06T17:23:57+08:00][sql] CONNECT:[ UseTime:0.100937s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:23:57+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group` [ RunTime:0.055041s ] |
|||
[2021-05-06T17:23:57+08:00][sql] SELECT * FROM `system_auth_group` WHERE `site_id` = 1 AND `type` = 1 LIMIT 0,10 [ RunTime:0.056294s ] |
|||
[2021-05-06T17:26:08+08:00][sql] CONNECT:[ UseTime:0.141130s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:26:08+08:00][sql] SHOW FULL COLUMNS FROM `system_upload_log` [ RunTime:0.101484s ] |
|||
[2021-05-06T17:26:17+08:00][sql] CONNECT:[ UseTime:0.168259s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:26:17+08:00][sql] SHOW FULL COLUMNS FROM `system_upload_log` [ RunTime:0.077454s ] |
|||
[2021-05-06T17:28:03+08:00][sql] CONNECT:[ UseTime:0.076676s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:28:03+08:00][sql] SHOW FULL COLUMNS FROM `system_upload_log` [ RunTime:0.044801s ] |
|||
[2021-05-06T17:28:36+08:00][sql] CONNECT:[ UseTime:0.102915s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:28:36+08:00][sql] SHOW FULL COLUMNS FROM `system_upload_log` [ RunTime:0.081183s ] |
|||
[2021-05-06T17:29:17+08:00][sql] CONNECT:[ UseTime:0.081562s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:29:17+08:00][sql] SHOW FULL COLUMNS FROM `system_upload_log` [ RunTime:0.058148s ] |
|||
[2021-05-06T17:29:26+08:00][sql] CONNECT:[ UseTime:0.086474s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:29:26+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.052484s ] |
|||
[2021-05-06T17:29:26+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.060932s ] |
|||
[2021-05-06T17:29:26+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.047785s ] |
|||
[2021-05-06T17:29:26+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.052176s ] |
|||
[2021-05-06T17:29:26+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,26,192,198,200,3,11,189,4,14,199,190,191,197) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.051778s ] |
|||
[2021-05-06T17:29:26+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.050844s ] |
|||
[2021-05-06T17:29:26+08:00][sql] CONNECT:[ UseTime:0.077690s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:29:26+08:00][sql] SHOW FULL COLUMNS FROM `system_upload_log` [ RunTime:0.057722s ] |
|||
[2021-05-06T17:29:26+08:00][sql] CONNECT:[ UseTime:0.075193s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:29:26+08:00][sql] SHOW FULL COLUMNS FROM `system_image_storages` [ RunTime:0.052272s ] |
|||
[2021-05-06T17:29:26+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_image_storages` WHERE `system_image_storages`.`delete_time` IS NULL [ RunTime:0.061206s ] |
|||
[2021-05-06T17:29:26+08:00][sql] SELECT * FROM `system_image_storages` WHERE `system_image_storages`.`delete_time` IS NULL [ RunTime:0.054414s ] |
|||
[2021-05-06T17:29:26+08:00][sql] CONNECT:[ UseTime:0.088088s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:29:26+08:00][sql] SHOW FULL COLUMNS FROM `system_upload_log` [ RunTime:0.054499s ] |
|||
[2021-05-06T17:29:27+08:00][sql] CONNECT:[ UseTime:0.088272s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:29:27+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.062281s ] |
|||
[2021-05-06T17:29:27+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.072740s ] |
|||
[2021-05-06T17:29:27+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.061815s ] |
|||
[2021-05-06T17:29:27+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.059792s ] |
|||
[2021-05-06T17:29:27+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.064827s ] |
|||
[2021-05-06T17:29:27+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.063400s ] |
|||
[2021-05-06T17:29:27+08:00][sql] CONNECT:[ UseTime:0.083896s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:29:27+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.058286s ] |
|||
[2021-05-06T17:29:27+08:00][sql] SELECT * FROM `system_user` WHERE ( `site_id` = 1 AND `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.061874s ] |
|||
[2021-05-06T17:29:27+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.062032s ] |
|||
[2021-05-06T17:29:27+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.053764s ] |
|||
[2021-05-06T17:29:27+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.055439s ] |
|||
[2021-05-06T17:29:27+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,26,192,198,200,3,11,189,4,14,199,190,191,197) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.058709s ] |
|||
[2021-05-06T17:29:27+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.055351s ] |
|||
[2021-05-06T17:31:35+08:00][sql] CONNECT:[ UseTime:0.081315s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:31:35+08:00][sql] SHOW FULL COLUMNS FROM `system_upload_log` [ RunTime:0.054597s ] |
|||
[2021-05-06T17:32:53+08:00][sql] CONNECT:[ UseTime:0.092112s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:32:53+08:00][sql] SHOW FULL COLUMNS FROM `system_upload_log` [ RunTime:0.069347s ] |
|||
[2021-05-06T17:33:24+08:00][sql] CONNECT:[ UseTime:0.090491s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:33:24+08:00][sql] SHOW FULL COLUMNS FROM `system_upload_log` [ RunTime:0.056907s ] |
|||
[2021-05-06T17:33:54+08:00][sql] CONNECT:[ UseTime:0.080301s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:33:54+08:00][sql] SHOW FULL COLUMNS FROM `system_image_storages` [ RunTime:0.055614s ] |
|||
[2021-05-06T17:33:54+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_image_storages` WHERE `system_image_storages`.`delete_time` IS NULL [ RunTime:0.055589s ] |
|||
[2021-05-06T17:33:54+08:00][sql] SELECT * FROM `system_image_storages` WHERE `system_image_storages`.`delete_time` IS NULL [ RunTime:0.049275s ] |
|||
[2021-05-06T17:33:56+08:00][sql] CONNECT:[ UseTime:0.102217s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:33:56+08:00][sql] SHOW FULL COLUMNS FROM `system_image_storages` [ RunTime:0.065372s ] |
|||
[2021-05-06T17:33:56+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_image_storages` WHERE ( `type` = 1 AND `site_id` = 1 ) AND `system_image_storages`.`delete_time` IS NULL [ RunTime:0.064987s ] |
|||
[2021-05-06T17:33:56+08:00][sql] SELECT * FROM `system_image_storages` WHERE ( `type` = 1 AND `site_id` = 1 ) AND `system_image_storages`.`delete_time` IS NULL ORDER BY `create_time` DESC LIMIT 0,10 [ RunTime:0.064726s ] |
|||
[2021-05-06T17:33:58+08:00][sql] CONNECT:[ UseTime:0.095445s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:33:58+08:00][sql] SHOW FULL COLUMNS FROM `system_image_storages` [ RunTime:0.061145s ] |
|||
[2021-05-06T17:33:58+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_image_storages` WHERE ( `type` = 2 AND `site_id` = 1 ) AND `system_image_storages`.`delete_time` IS NULL [ RunTime:0.057201s ] |
|||
[2021-05-06T17:33:58+08:00][sql] SELECT * FROM `system_image_storages` WHERE ( `type` = 2 AND `site_id` = 1 ) AND `system_image_storages`.`delete_time` IS NULL ORDER BY `create_time` DESC LIMIT 0,10 [ RunTime:0.058672s ] |
|||
[2021-05-06T17:34:01+08:00][sql] CONNECT:[ UseTime:0.086678s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:34:01+08:00][sql] SHOW FULL COLUMNS FROM `system_image_storages` [ RunTime:0.056016s ] |
|||
[2021-05-06T17:34:01+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_image_storages` WHERE ( `type` = 1 AND `site_id` = 1 ) AND `system_image_storages`.`delete_time` IS NULL [ RunTime:0.054230s ] |
|||
[2021-05-06T17:34:01+08:00][sql] SELECT * FROM `system_image_storages` WHERE ( `type` = 1 AND `site_id` = 1 ) AND `system_image_storages`.`delete_time` IS NULL ORDER BY `create_time` DESC LIMIT 0,10 [ RunTime:0.056850s ] |
|||
[2021-05-06T17:34:45+08:00][sql] CONNECT:[ UseTime:0.090469s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:34:45+08:00][sql] SHOW FULL COLUMNS FROM `bmz_config` [ RunTime:0.052177s ] |
|||
[2021-05-06T17:34:45+08:00][sql] SELECT COUNT(*) AS think_count FROM `bmz_config` WHERE ( `site_id` = 1 ) AND `bmz_config`.`delete_time` IS NULL [ RunTime:0.055617s ] |
|||
[2021-05-06T17:34:45+08:00][sql] SELECT * FROM `bmz_config` WHERE ( `site_id` = 1 ) AND `bmz_config`.`delete_time` IS NULL ORDER BY `create_time` DESC [ RunTime:0.052692s ] |
|||
[2021-05-06T17:37:09+08:00][sql] CONNECT:[ UseTime:0.098172s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:37:09+08:00][sql] SHOW FULL COLUMNS FROM `system_upload_log` [ RunTime:0.067245s ] |
|||
[2021-05-06T17:37:09+08:00][sql] CONNECT:[ UseTime:0.098173s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:37:09+08:00][sql] SHOW FULL COLUMNS FROM `system_image_storages` [ RunTime:0.067426s ] |
|||
[2021-05-06T17:37:09+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_image_storages` WHERE `system_image_storages`.`delete_time` IS NULL [ RunTime:0.064046s ] |
|||
[2021-05-06T17:37:09+08:00][sql] SELECT * FROM `system_image_storages` WHERE `system_image_storages`.`delete_time` IS NULL [ RunTime:0.054945s ] |
|||
[2021-05-06T17:37:09+08:00][sql] CONNECT:[ UseTime:0.083854s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:37:09+08:00][sql] SHOW FULL COLUMNS FROM `system_upload_log` [ RunTime:0.052125s ] |
|||
[2021-05-06T17:37:29+08:00][sql] CONNECT:[ UseTime:0.091182s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:37:29+08:00][sql] SHOW FULL COLUMNS FROM `system_upload_log` [ RunTime:0.076706s ] |
|||
[2021-05-06T17:37:29+08:00][sql] INSERT INTO `system_upload_log` SET `name` = '1922077ea08ca3d699f92df0cd195f32.png' , `host` = 'localhost:8080' , `y` = '2021' , `m` = '05' , `d` = '06' , `url` = 'http://static.ahbmz.com/localhost:8080/2021/05/06/1922077ea08ca3d699f92df0cd195f32.png' , `type` = 'png' , `size` = 93439 , `date` = '0506' , `create_time` = 1620293848 , `update_time` = 1620293848 [ RunTime:0.058692s ] |
|||
[2021-05-06T17:37:29+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.061488s ] |
|||
[2021-05-06T17:37:29+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.067232s ] |
|||
[2021-05-06T17:37:29+08:00][error] [8]未定义数组索引: HTTP_USER_AGENT[/Users/wwwroot/ahbmz/api.base.ahbmz.com/app/common.php:222] |
|||
[2021-05-06T17:38:34+08:00][sql] CONNECT:[ UseTime:0.108410s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:38:34+08:00][sql] SHOW FULL COLUMNS FROM `system_upload_log` [ RunTime:0.058635s ] |
|||
[2021-05-06T17:38:37+08:00][sql] CONNECT:[ UseTime:0.139013s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:38:37+08:00][sql] SHOW FULL COLUMNS FROM `system_upload_log` [ RunTime:0.329012s ] |
|||
[2021-05-06T17:38:42+08:00][sql] CONNECT:[ UseTime:0.099790s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:38:42+08:00][sql] SHOW FULL COLUMNS FROM `system_upload_log` [ RunTime:0.064697s ] |
|||
[2021-05-06T17:38:42+08:00][sql] CONNECT:[ UseTime:0.094366s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:38:42+08:00][sql] SHOW FULL COLUMNS FROM `system_image_storages` [ RunTime:0.051719s ] |
|||
[2021-05-06T17:38:42+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_image_storages` WHERE `system_image_storages`.`delete_time` IS NULL [ RunTime:0.070371s ] |
|||
[2021-05-06T17:38:42+08:00][sql] SELECT * FROM `system_image_storages` WHERE `system_image_storages`.`delete_time` IS NULL [ RunTime:0.065107s ] |
|||
[2021-05-06T17:38:42+08:00][sql] CONNECT:[ UseTime:0.078538s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:38:42+08:00][sql] SHOW FULL COLUMNS FROM `system_upload_log` [ RunTime:0.063071s ] |
|||
[2021-05-06T17:38:49+08:00][sql] CONNECT:[ UseTime:0.085058s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:38:49+08:00][sql] SHOW FULL COLUMNS FROM `system_upload_log` [ RunTime:0.049870s ] |
|||
[2021-05-06T17:38:49+08:00][sql] INSERT INTO `system_upload_log` SET `name` = 'e457b1b8111b4558a60665603bb659e5.png' , `host` = 'localhost:8080' , `y` = '2021' , `m` = '05' , `d` = '06' , `url` = 'http://static.ahbmz.com/localhost:8080/2021/05/06/e457b1b8111b4558a60665603bb659e5.png' , `type` = 'png' , `size` = 93439 , `date` = '0506' , `create_time` = 1620293929 , `update_time` = 1620293929 [ RunTime:0.052344s ] |
|||
[2021-05-06T17:38:49+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.057156s ] |
|||
[2021-05-06T17:38:49+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.050935s ] |
|||
[2021-05-06T17:38:49+08:00][error] [8]未定义数组索引: HTTP_USER_AGENT[/Users/wwwroot/ahbmz/api.base.ahbmz.com/app/common.php:222] |
|||
[2021-05-06T17:41:44+08:00][sql] CONNECT:[ UseTime:0.135740s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:41:44+08:00][sql] SHOW FULL COLUMNS FROM `system_upload_log` [ RunTime:0.074584s ] |
|||
[2021-05-06T17:41:51+08:00][sql] CONNECT:[ UseTime:0.074718s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:41:51+08:00][sql] SHOW FULL COLUMNS FROM `system_upload_log` [ RunTime:0.053667s ] |
|||
[2021-05-06T17:41:51+08:00][sql] INSERT INTO `system_upload_log` SET `name` = 'd77e89bcbb156922da2886b7f28f305a.png' , `host` = 'localhost:8080' , `y` = '2021' , `m` = '05' , `d` = '06' , `url` = 'http://static.ahbmz.com/localhost:8080/2021/05/06/d77e89bcbb156922da2886b7f28f305a.png' , `type` = 'png' , `size` = 93439 , `date` = '0506' , `create_time` = 1620294111 , `update_time` = 1620294111 [ RunTime:0.053693s ] |
|||
[2021-05-06T17:41:51+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.072677s ] |
|||
[2021-05-06T17:41:51+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.039696s ] |
|||
[2021-05-06T17:41:51+08:00][error] [8]未定义数组索引: HTTP_USER_AGENT[/Users/wwwroot/ahbmz/api.base.ahbmz.com/app/common.php:222] |
|||
[2021-05-06T17:42:00+08:00][sql] CONNECT:[ UseTime:0.227654s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:42:00+08:00][sql] SHOW FULL COLUMNS FROM `system_upload_log` [ RunTime:0.079340s ] |
|||
[2021-05-06T17:42:08+08:00][sql] CONNECT:[ UseTime:0.114279s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:42:08+08:00][sql] SHOW FULL COLUMNS FROM `system_upload_log` [ RunTime:0.128398s ] |
|||
[2021-05-06T17:42:08+08:00][sql] INSERT INTO `system_upload_log` SET `name` = 'c1516fc4535f0591f105f09e328e1b03.png' , `host` = 'localhost:8080' , `y` = '2021' , `m` = '05' , `d` = '06' , `url` = 'http://static.ahbmz.com/localhost:8080/2021/05/06/c1516fc4535f0591f105f09e328e1b03.png' , `type` = 'png' , `size` = 235957 , `date` = '0506' , `create_time` = 1620294128 , `update_time` = 1620294128 [ RunTime:0.059474s ] |
|||
[2021-05-06T17:42:08+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.117451s ] |
|||
[2021-05-06T17:42:08+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.145852s ] |
|||
[2021-05-06T17:42:08+08:00][error] [8]未定义数组索引: HTTP_USER_AGENT[/Users/wwwroot/ahbmz/api.base.ahbmz.com/app/common.php:222] |
|||
[2021-05-06T17:42:33+08:00][sql] CONNECT:[ UseTime:0.088324s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:42:33+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.054003s ] |
|||
[2021-05-06T17:42:33+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.058690s ] |
|||
[2021-05-06T17:42:33+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.061272s ] |
|||
[2021-05-06T17:42:33+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.055010s ] |
|||
[2021-05-06T17:42:33+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,26,192,198,200,3,11,189,4,14,199,190,191,197) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.055801s ] |
|||
[2021-05-06T17:42:33+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.055937s ] |
|||
[2021-05-06T17:42:34+08:00][sql] CONNECT:[ UseTime:0.098891s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:42:34+08:00][sql] SHOW FULL COLUMNS FROM `system_upload_log` [ RunTime:0.066556s ] |
|||
[2021-05-06T17:42:34+08:00][sql] CONNECT:[ UseTime:0.081375s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:42:34+08:00][sql] SHOW FULL COLUMNS FROM `system_image_storages` [ RunTime:0.053705s ] |
|||
[2021-05-06T17:42:34+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_image_storages` WHERE `system_image_storages`.`delete_time` IS NULL [ RunTime:0.049527s ] |
|||
[2021-05-06T17:42:34+08:00][sql] SELECT * FROM `system_image_storages` WHERE `system_image_storages`.`delete_time` IS NULL [ RunTime:0.049709s ] |
|||
[2021-05-06T17:42:34+08:00][sql] CONNECT:[ UseTime:0.070965s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:42:34+08:00][sql] SHOW FULL COLUMNS FROM `system_upload_log` [ RunTime:0.055870s ] |
|||
[2021-05-06T17:42:34+08:00][sql] CONNECT:[ UseTime:0.088048s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:42:34+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.057668s ] |
|||
[2021-05-06T17:42:34+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.060158s ] |
|||
[2021-05-06T17:42:34+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.058067s ] |
|||
[2021-05-06T17:42:34+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.060142s ] |
|||
[2021-05-06T17:42:34+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.054392s ] |
|||
[2021-05-06T17:42:34+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.061272s ] |
|||
[2021-05-06T17:42:34+08:00][sql] CONNECT:[ UseTime:0.080004s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:42:34+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.053045s ] |
|||
[2021-05-06T17:42:34+08:00][sql] SELECT * FROM `system_user` WHERE ( `site_id` = 1 AND `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.056510s ] |
|||
[2021-05-06T17:42:34+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.053061s ] |
|||
[2021-05-06T17:42:34+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.049786s ] |
|||
[2021-05-06T17:42:34+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.052334s ] |
|||
[2021-05-06T17:42:34+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,26,192,198,200,3,11,189,4,14,199,190,191,197) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.052695s ] |
|||
[2021-05-06T17:42:34+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.062833s ] |
|||
[2021-05-06T17:42:44+08:00][sql] CONNECT:[ UseTime:0.090596s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:42:44+08:00][sql] SHOW FULL COLUMNS FROM `system_upload_log` [ RunTime:0.054245s ] |
|||
[2021-05-06T17:42:44+08:00][sql] INSERT INTO `system_upload_log` SET `name` = '3da11476dce666619c241efc8c1f16df.png' , `host` = 'localhost:8080' , `y` = '2021' , `m` = '05' , `d` = '06' , `url` = 'http://static.ahbmz.com/localhost:8080/2021/05/06/3da11476dce666619c241efc8c1f16df.png' , `type` = 'png' , `size` = 93439 , `date` = '0506' , `create_time` = 1620294164 , `update_time` = 1620294164 [ RunTime:0.054294s ] |
|||
[2021-05-06T17:42:44+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.059320s ] |
|||
[2021-05-06T17:42:44+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.059104s ] |
|||
[2021-05-06T17:42:44+08:00][error] [8]未定义数组索引: HTTP_USER_AGENT[/Users/wwwroot/ahbmz/api.base.ahbmz.com/app/common.php:222] |
|||
[2021-05-06T17:43:04+08:00][sql] CONNECT:[ UseTime:0.097396s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:43:04+08:00][sql] SHOW FULL COLUMNS FROM `system_upload_log` [ RunTime:0.058506s ] |
|||
[2021-05-06T17:43:10+08:00][sql] CONNECT:[ UseTime:0.096999s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:43:10+08:00][sql] SHOW FULL COLUMNS FROM `system_upload_log` [ RunTime:0.086721s ] |
|||
[2021-05-06T17:43:10+08:00][sql] INSERT INTO `system_upload_log` SET `name` = '1e603e817154337afd2800a2d2a0046a.jpg' , `host` = 'localhost:8080' , `y` = '2021' , `m` = '05' , `d` = '06' , `url` = 'http://static.ahbmz.com/localhost:8080/2021/05/06/1e603e817154337afd2800a2d2a0046a.jpg' , `type` = 'jpg' , `size` = 14139 , `date` = '0506' , `create_time` = 1620294189 , `update_time` = 1620294189 [ RunTime:0.059898s ] |
|||
[2021-05-06T17:43:10+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.063830s ] |
|||
[2021-05-06T17:43:10+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.061337s ] |
|||
[2021-05-06T17:43:10+08:00][error] [8]未定义数组索引: HTTP_USER_AGENT[/Users/wwwroot/ahbmz/api.base.ahbmz.com/app/common.php:222] |
|||
[2021-05-06T17:44:50+08:00][sql] CONNECT:[ UseTime:0.171331s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:44:50+08:00][sql] SHOW FULL COLUMNS FROM `system_upload_log` [ RunTime:0.099141s ] |
|||
[2021-05-06T17:49:05+08:00][sql] CONNECT:[ UseTime:0.209564s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:49:05+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.306962s ] |
|||
[2021-05-06T17:49:05+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.070117s ] |
|||
[2021-05-06T17:49:05+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.078585s ] |
|||
[2021-05-06T17:49:05+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.105605s ] |
|||
[2021-05-06T17:49:05+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,26,192,198,200,3,11,189,4,14,199,190,191,197) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.071332s ] |
|||
[2021-05-06T17:49:05+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.057799s ] |
|||
[2021-05-06T17:49:06+08:00][sql] CONNECT:[ UseTime:0.958937s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:49:06+08:00][sql] SHOW FULL COLUMNS FROM `system_upload_log` [ RunTime:0.126088s ] |
|||
[2021-05-06T17:49:07+08:00][sql] CONNECT:[ UseTime:0.962983s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:49:07+08:00][sql] SHOW FULL COLUMNS FROM `system_image_storages` [ RunTime:0.127136s ] |
|||
[2021-05-06T17:49:07+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_image_storages` WHERE `system_image_storages`.`delete_time` IS NULL [ RunTime:0.265157s ] |
|||
[2021-05-06T17:49:07+08:00][sql] SELECT * FROM `system_image_storages` WHERE `system_image_storages`.`delete_time` IS NULL [ RunTime:0.094962s ] |
|||
[2021-05-06T17:49:07+08:00][sql] CONNECT:[ UseTime:0.314331s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:49:07+08:00][sql] SHOW FULL COLUMNS FROM `system_upload_log` [ RunTime:0.105442s ] |
|||
[2021-05-06T17:49:07+08:00][sql] CONNECT:[ UseTime:0.961686s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:49:07+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.127282s ] |
|||
[2021-05-06T17:49:07+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.057768s ] |
|||
[2021-05-06T17:49:07+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.292851s ] |
|||
[2021-05-06T17:49:07+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.102325s ] |
|||
[2021-05-06T17:49:07+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.114639s ] |
|||
[2021-05-06T17:49:07+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.120131s ] |
|||
[2021-05-06T17:49:07+08:00][sql] CONNECT:[ UseTime:0.960683s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:49:07+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.124851s ] |
|||
[2021-05-06T17:49:07+08:00][sql] SELECT * FROM `system_user` WHERE ( `site_id` = 1 AND `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.057885s ] |
|||
[2021-05-06T17:49:07+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.291163s ] |
|||
[2021-05-06T17:49:07+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.103161s ] |
|||
[2021-05-06T17:49:07+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.134975s ] |
|||
[2021-05-06T17:49:07+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,26,192,198,200,3,11,189,4,14,199,190,191,197) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.217030s ] |
|||
[2021-05-06T17:49:07+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.352700s ] |
|||
[2021-05-06T17:50:48+08:00][sql] CONNECT:[ UseTime:0.101209s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:50:48+08:00][sql] SHOW FULL COLUMNS FROM `system_upload_log` [ RunTime:0.060733s ] |
|||
[2021-05-06T17:50:56+08:00][sql] CONNECT:[ UseTime:0.087505s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:50:56+08:00][sql] SHOW FULL COLUMNS FROM `system_upload_log` [ RunTime:0.063209s ] |
|||
[2021-05-06T17:50:56+08:00][sql] INSERT INTO `system_upload_log` SET `name` = '6f241351cf7d1fb9589bd90ddbde11b8.jpg' , `host` = 'localhost:8080' , `y` = '2021' , `m` = '05' , `d` = '06' , `url` = 'http://static.ahbmz.com/localhost:8080/2021/05/06/6f241351cf7d1fb9589bd90ddbde11b8.jpg' , `type` = 'jpg' , `size` = 5150 , `date` = '0506' , `create_time` = 1620294656 , `update_time` = 1620294656 [ RunTime:0.055894s ] |
|||
[2021-05-06T17:50:56+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.064688s ] |
|||
[2021-05-06T17:50:56+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.099072s ] |
|||
[2021-05-06T17:50:56+08:00][error] [8]未定义数组索引: HTTP_USER_AGENT[/Users/wwwroot/ahbmz/api.base.ahbmz.com/app/common.php:222] |
|||
[2021-05-06T17:51:02+08:00][sql] CONNECT:[ UseTime:0.102485s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:51:02+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.059053s ] |
|||
[2021-05-06T17:51:02+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.057478s ] |
|||
[2021-05-06T17:51:02+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.056228s ] |
|||
[2021-05-06T17:51:02+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.066645s ] |
|||
[2021-05-06T17:51:02+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,26,192,198,200,3,11,189,4,14,199,190,191,197) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.086558s ] |
|||
[2021-05-06T17:51:02+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.067800s ] |
|||
[2021-05-06T17:51:03+08:00][sql] CONNECT:[ UseTime:0.100574s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:51:03+08:00][sql] SHOW FULL COLUMNS FROM `system_upload_log` [ RunTime:0.057021s ] |
|||
[2021-05-06T17:51:03+08:00][sql] CONNECT:[ UseTime:0.081216s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:51:03+08:00][sql] SHOW FULL COLUMNS FROM `system_image_storages` [ RunTime:0.049589s ] |
|||
[2021-05-06T17:51:03+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_image_storages` WHERE `system_image_storages`.`delete_time` IS NULL [ RunTime:0.053439s ] |
|||
[2021-05-06T17:51:03+08:00][sql] SELECT * FROM `system_image_storages` WHERE `system_image_storages`.`delete_time` IS NULL [ RunTime:0.049282s ] |
|||
[2021-05-06T17:51:03+08:00][sql] CONNECT:[ UseTime:0.078674s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:51:03+08:00][sql] SHOW FULL COLUMNS FROM `system_upload_log` [ RunTime:0.052647s ] |
|||
[2021-05-06T17:51:03+08:00][sql] CONNECT:[ UseTime:0.076443s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:51:03+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.048304s ] |
|||
[2021-05-06T17:51:03+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.063442s ] |
|||
[2021-05-06T17:51:03+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.043699s ] |
|||
[2021-05-06T17:51:03+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.044078s ] |
|||
[2021-05-06T17:51:03+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.046296s ] |
|||
[2021-05-06T17:51:03+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.045618s ] |
|||
[2021-05-06T17:51:03+08:00][sql] CONNECT:[ UseTime:0.083635s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:51:03+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.062213s ] |
|||
[2021-05-06T17:51:03+08:00][sql] SELECT * FROM `system_user` WHERE ( `site_id` = 1 AND `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.084811s ] |
|||
[2021-05-06T17:51:03+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.057684s ] |
|||
[2021-05-06T17:51:03+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.055238s ] |
|||
[2021-05-06T17:51:03+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.059806s ] |
|||
[2021-05-06T17:51:03+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,26,192,198,200,3,11,189,4,14,199,190,191,197) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.068504s ] |
|||
[2021-05-06T17:51:03+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.057206s ] |
|||
[2021-05-06T17:51:10+08:00][sql] CONNECT:[ UseTime:0.101816s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:51:10+08:00][sql] SHOW FULL COLUMNS FROM `system_upload_log` [ RunTime:0.063172s ] |
|||
[2021-05-06T17:51:10+08:00][sql] INSERT INTO `system_upload_log` SET `name` = 'ea39ff127ba72737837430a1a55151cd.jpg' , `host` = 'localhost:8080' , `y` = '2021' , `m` = '05' , `d` = '06' , `url` = 'http://static.ahbmz.com/localhost:8080/2021/05/06/ea39ff127ba72737837430a1a55151cd.jpg' , `type` = 'jpg' , `size` = 5150 , `date` = '0506' , `create_time` = 1620294670 , `update_time` = 1620294670 [ RunTime:0.058738s ] |
|||
[2021-05-06T17:51:10+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.083243s ] |
|||
[2021-05-06T17:51:10+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.080039s ] |
|||
[2021-05-06T17:51:10+08:00][error] [8]未定义数组索引: HTTP_USER_AGENT[/Users/wwwroot/ahbmz/api.base.ahbmz.com/app/common.php:222] |
|||
[2021-05-06T17:51:35+08:00][sql] CONNECT:[ UseTime:0.094533s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:51:35+08:00][sql] SHOW FULL COLUMNS FROM `system_upload_log` [ RunTime:0.061091s ] |
|||
[2021-05-06T17:52:01+08:00][sql] CONNECT:[ UseTime:0.507083s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:52:01+08:00][sql] SHOW FULL COLUMNS FROM `system_upload_log` [ RunTime:0.085688s ] |
|||
[2021-05-06T17:52:01+08:00][sql] INSERT INTO `system_upload_log` SET `name` = 'acd4bd4e8f44abf6de38f7b1c04ab137.jpg' , `host` = 'localhost:8080' , `y` = '2021' , `m` = '05' , `d` = '06' , `url` = 'http://static.ahbmz.com/localhost:8080/2021/05/06/acd4bd4e8f44abf6de38f7b1c04ab137.jpg' , `type` = 'jpg' , `size` = 5150 , `date` = '0506' , `create_time` = 1620294721 , `update_time` = 1620294721 [ RunTime:0.062567s ] |
|||
[2021-05-06T17:52:01+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.074339s ] |
|||
[2021-05-06T17:52:01+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.062432s ] |
|||
[2021-05-06T17:52:01+08:00][error] [8]未定义数组索引: HTTP_USER_AGENT[/Users/wwwroot/ahbmz/api.base.ahbmz.com/app/common.php:222] |
|||
[2021-05-06T17:52:11+08:00][sql] CONNECT:[ UseTime:0.081307s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:52:11+08:00][sql] SHOW FULL COLUMNS FROM `system_image_storages` [ RunTime:0.059511s ] |
|||
[2021-05-06T17:52:11+08:00][sql] SELECT * FROM `system_image_storages` WHERE ( `site_id` = 1 AND `id` = 1 ) AND `system_image_storages`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.053753s ] |
|||
[2021-05-06T17:52:11+08:00][sql] UPDATE `system_image_storages` SET `type` = 2 , `url` = 'http://static.ahbmz.com/localhost:8080/2021/05/06/acd4bd4e8f44abf6de38f7b1c04ab137.jpg' , `update_time` = 1620294730 WHERE ( `id` = 1 ) AND `system_image_storages`.`delete_time` IS NULL [ RunTime:0.048628s ] |
|||
[2021-05-06T17:52:11+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.059202s ] |
|||
[2021-05-06T17:52:11+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.059240s ] |
|||
[2021-05-06T17:52:11+08:00][sql] SHOW FULL COLUMNS FROM `system_action_log` [ RunTime:0.061264s ] |
|||
[2021-05-06T17:52:11+08:00][sql] INSERT INTO `system_action_log` SET `site_id` = 1 , `user_id` = 1 , `username` = 'admin' , `action_ip` = 2130706433 , `request_method` = 'POST' , `request_param` = '{\"id\":\"1\",\"site_id\":\"1\",\"title\":\"\\u6d4b\\u8bd5\",\"description\":\"\\u6d4b\\u8bd5\\u7684\",\"type\":\"2\",\"url\":\"http:\\/\\/static.ahbmz.com\\/localhost:8080\\/2021\\/05\\/06\\/acd4bd4e8f44abf6de38f7b1c04ab137.jpg\",\"delete_time\":\"\",\"update_time\":\"\",\"create_time\":\"\",\"type_str\":\"\\u5546\\u52a1\"}' , `model` = '/api/ImageStorage/edit' , `url` = 'api.base.ahbmz.com/api/ImageStorage/edit' , `spend_time` = '1.1179' , `record_id` = '1' , `remark` = '未检测到日志信息模型,请检查CURR_THIS反射常量!!!' , `data` = '{\"title\":\"\\u6d4b\\u8bd5\",\"description\":\"\\u6d4b\\u8bd5\\u7684\",\"type\":\"2\",\"url\":\"http:\\/\\/static.ahbmz.com\\/localhost:8080\\/2021\\/05\\/06\\/acd4bd4e8f44abf6de38f7b1c04ab137.jpg\",\"type_str\":\"\\u5546\\u52a1\",\"copy_safe_id\":0,\"copy_safe_site_id\":1,\"update_time\":\"2021-05-06 17:52:10\"}' , `origin` = '{\"id\":1,\"site_id\":1,\"title\":\"\\u6d4b\\u8bd5\",\"description\":\"\\u6d4b\\u8bd5\\u7684\",\"type\":1,\"url\":\"http:\\/\\/static.ahbmz.com\\/localhost:8080\\/2021\\/03\\/21\\/276da7deb54b5cfd17fd75e8dc685708.jpg\",\"delete_time\":null,\"update_time\":0,\"create_time\":0}' , `sql` = 'UPDATE `system_image_storages` SET `type` = 2 , `url` = \'http://static.ahbmz.com/localhost:8080/2021/05/06/acd4bd4e8f44abf6de38f7b1c04ab137.jpg\' , `update_time` = 1620294730 WHERE ( `id` = 1 ) AND `system_image_storages`.`delete_time` IS NULL' , `client_browser` = 'Chrome' , `client_os` = 'Mac' , `client_device` = 'Mac' , `update_time` = 1620294731 , `create_time` = 1620294731 [ RunTime:0.052510s ] |
|||
[2021-05-06T17:52:11+08:00][sql] CONNECT:[ UseTime:0.085297s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:52:11+08:00][sql] SHOW FULL COLUMNS FROM `system_image_storages` [ RunTime:0.056110s ] |
|||
[2021-05-06T17:52:11+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_image_storages` WHERE `system_image_storages`.`delete_time` IS NULL [ RunTime:0.067706s ] |
|||
[2021-05-06T17:52:11+08:00][sql] SELECT * FROM `system_image_storages` WHERE `system_image_storages`.`delete_time` IS NULL [ RunTime:0.056872s ] |
|||
[2021-05-06T17:52:27+08:00][sql] CONNECT:[ UseTime:0.104029s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:52:27+08:00][sql] SHOW FULL COLUMNS FROM `system_upload_log` [ RunTime:0.056796s ] |
|||
[2021-05-06T17:52:27+08:00][sql] INSERT INTO `system_upload_log` SET `name` = 'a68fd97459d228899dad65a756bd5933.jpg' , `host` = 'localhost:8080' , `y` = '2021' , `m` = '05' , `d` = '06' , `url` = 'http://static.ahbmz.com/localhost:8080/2021/05/06/a68fd97459d228899dad65a756bd5933.jpg' , `type` = 'jpg' , `size` = 14139 , `date` = '0506' , `create_time` = 1620294746 , `update_time` = 1620294746 [ RunTime:0.524287s ] |
|||
[2021-05-06T17:52:27+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.059448s ] |
|||
[2021-05-06T17:52:27+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.061248s ] |
|||
[2021-05-06T17:52:27+08:00][error] [8]未定义数组索引: HTTP_USER_AGENT[/Users/wwwroot/ahbmz/api.base.ahbmz.com/app/common.php:222] |
|||
[2021-05-06T17:55:05+08:00][sql] CONNECT:[ UseTime:0.079436s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:55:05+08:00][sql] SHOW FULL COLUMNS FROM `system_upload_log` [ RunTime:0.051509s ] |
|||
[2021-05-06T17:55:10+08:00][sql] CONNECT:[ UseTime:0.091995s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:55:10+08:00][sql] SHOW FULL COLUMNS FROM `system_upload_log` [ RunTime:0.057553s ] |
|||
[2021-05-06T17:55:10+08:00][sql] CONNECT:[ UseTime:0.087968s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:55:10+08:00][sql] SHOW FULL COLUMNS FROM `system_image_storages` [ RunTime:0.051289s ] |
|||
[2021-05-06T17:55:10+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_image_storages` WHERE `system_image_storages`.`delete_time` IS NULL [ RunTime:0.050826s ] |
|||
[2021-05-06T17:55:10+08:00][sql] SELECT * FROM `system_image_storages` WHERE `system_image_storages`.`delete_time` IS NULL [ RunTime:0.054388s ] |
|||
[2021-05-06T17:55:10+08:00][sql] CONNECT:[ UseTime:0.063256s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:55:10+08:00][sql] SHOW FULL COLUMNS FROM `system_upload_log` [ RunTime:0.045130s ] |
|||
[2021-05-06T17:55:19+08:00][sql] CONNECT:[ UseTime:0.061719s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:55:19+08:00][sql] SHOW FULL COLUMNS FROM `system_upload_log` [ RunTime:0.047187s ] |
|||
[2021-05-06T17:55:19+08:00][sql] INSERT INTO `system_upload_log` SET `name` = 'fa8b216eb33984908066b4ca1c0a88d3.jpg' , `host` = 'localhost:8080' , `y` = '2021' , `m` = '05' , `d` = '06' , `url` = 'http://static.ahbmz.com/localhost:8080/2021/05/06/fa8b216eb33984908066b4ca1c0a88d3.jpg' , `type` = 'jpg' , `size` = 14139 , `date` = '0506' , `create_time` = 1620294919 , `update_time` = 1620294919 [ RunTime:0.466317s ] |
|||
[2021-05-06T17:55:19+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.043607s ] |
|||
[2021-05-06T17:55:19+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.051165s ] |
|||
[2021-05-06T17:55:19+08:00][error] [8]未定义数组索引: HTTP_USER_AGENT[/Users/wwwroot/ahbmz/api.base.ahbmz.com/app/common.php:222] |
|||
[2021-05-06T17:55:29+08:00][sql] CONNECT:[ UseTime:0.122271s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:55:29+08:00][sql] SHOW FULL COLUMNS FROM `system_upload_log` [ RunTime:0.080255s ] |
|||
[2021-05-06T17:55:29+08:00][sql] INSERT INTO `system_upload_log` SET `name` = '00d109f44ced9aeb01e99c5cabdd36f6.jpg' , `host` = 'localhost:8080' , `y` = '2021' , `m` = '05' , `d` = '06' , `url` = 'http://static.ahbmz.com/localhost:8080/2021/05/06/00d109f44ced9aeb01e99c5cabdd36f6.jpg' , `type` = 'jpg' , `size` = 14139 , `date` = '0506' , `create_time` = 1620294929 , `update_time` = 1620294929 [ RunTime:0.060301s ] |
|||
[2021-05-06T17:55:29+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.064695s ] |
|||
[2021-05-06T17:55:29+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.073138s ] |
|||
[2021-05-06T17:55:29+08:00][error] [8]未定义数组索引: HTTP_USER_AGENT[/Users/wwwroot/ahbmz/api.base.ahbmz.com/app/common.php:222] |
|||
[2021-05-06T17:55:40+08:00][sql] CONNECT:[ UseTime:0.087101s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:55:40+08:00][sql] SHOW FULL COLUMNS FROM `system_upload_log` [ RunTime:0.061380s ] |
|||
[2021-05-06T17:55:40+08:00][sql] INSERT INTO `system_upload_log` SET `name` = 'b059855c544e345a07f3fe4dd22ffc8a.jpg' , `host` = 'localhost:8080' , `y` = '2021' , `m` = '05' , `d` = '06' , `url` = 'http://static.ahbmz.com/localhost:8080/2021/05/06/b059855c544e345a07f3fe4dd22ffc8a.jpg' , `type` = 'jpg' , `size` = 5150 , `date` = '0506' , `create_time` = 1620294939 , `update_time` = 1620294939 [ RunTime:0.062005s ] |
|||
[2021-05-06T17:55:40+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.103133s ] |
|||
[2021-05-06T17:55:40+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.057227s ] |
|||
[2021-05-06T17:55:40+08:00][error] [8]未定义数组索引: HTTP_USER_AGENT[/Users/wwwroot/ahbmz/api.base.ahbmz.com/app/common.php:222] |
|||
[2021-05-06T17:55:56+08:00][sql] CONNECT:[ UseTime:0.091010s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:55:56+08:00][sql] SHOW FULL COLUMNS FROM `system_upload_log` [ RunTime:0.075564s ] |
|||
[2021-05-06T17:55:56+08:00][sql] INSERT INTO `system_upload_log` SET `name` = '5fe19bb79d9b2d75c1b5f9eb23e438f8.jpg' , `host` = 'localhost:8080' , `y` = '2021' , `m` = '05' , `d` = '06' , `url` = 'http://static.ahbmz.com/localhost:8080/2021/05/06/5fe19bb79d9b2d75c1b5f9eb23e438f8.jpg' , `type` = 'jpg' , `size` = 14139 , `date` = '0506' , `create_time` = 1620294956 , `update_time` = 1620294956 [ RunTime:0.071105s ] |
|||
[2021-05-06T17:55:56+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.056818s ] |
|||
[2021-05-06T17:55:56+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.061986s ] |
|||
[2021-05-06T17:55:56+08:00][error] [8]未定义数组索引: HTTP_USER_AGENT[/Users/wwwroot/ahbmz/api.base.ahbmz.com/app/common.php:222] |
|||
[2021-05-06T17:56:01+08:00][sql] CONNECT:[ UseTime:0.076714s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:56:01+08:00][sql] SHOW FULL COLUMNS FROM `system_image_storages` [ RunTime:0.044349s ] |
|||
[2021-05-06T17:56:01+08:00][sql] INSERT INTO `system_image_storages` SET `title` = '测试2' , `type` = 3 , `url` = 'http://static.ahbmz.com/localhost:8080/2021/05/06/5fe19bb79d9b2d75c1b5f9eb23e438f8.jpg' , `description` = '山水测试' , `create_time` = 1620294961 , `update_time` = 1620294961 [ RunTime:0.054961s ] |
|||
[2021-05-06T17:56:01+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.053726s ] |
|||
[2021-05-06T17:56:01+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.052863s ] |
|||
[2021-05-06T17:56:01+08:00][sql] SHOW FULL COLUMNS FROM `system_action_log` [ RunTime:0.045873s ] |
|||
[2021-05-06T17:56:01+08:00][sql] INSERT INTO `system_action_log` SET `site_id` = 1 , `user_id` = 1 , `username` = 'admin' , `action_ip` = 2130706433 , `request_method` = 'POST' , `request_param` = '{\"title\":\"\\u6d4b\\u8bd52\",\"type\":\"3\",\"url\":\"http:\\/\\/static.ahbmz.com\\/localhost:8080\\/2021\\/05\\/06\\/5fe19bb79d9b2d75c1b5f9eb23e438f8.jpg\",\"description\":\"\\u5c71\\u6c34\\u6d4b\\u8bd5\"}' , `model` = '/api/ImageStorage/add' , `url` = 'api.base.ahbmz.com/api/ImageStorage/add' , `spend_time` = '0.433' , `record_id` = '3' , `remark` = '未检测到日志信息模型,请检查CURR_THIS反射常量!!!' , `data` = '{\"title\":\"\\u6d4b\\u8bd52\",\"type\":\"3\",\"url\":\"http:\\/\\/static.ahbmz.com\\/localhost:8080\\/2021\\/05\\/06\\/5fe19bb79d9b2d75c1b5f9eb23e438f8.jpg\",\"description\":\"\\u5c71\\u6c34\\u6d4b\\u8bd5\",\"copy_safe_id\":0,\"copy_safe_site_id\":1,\"create_time\":\"2021-05-06 17:56:01\",\"update_time\":\"2021-05-06 17:56:01\",\"id\":\"3\"}' , `origin` = '[]' , `sql` = 'INSERT INTO `system_image_storages` SET `title` = \'测试2\' , `type` = 3 , `url` = \'http://static.ahbmz.com/localhost:8080/2021/05/06/5fe19bb79d9b2d75c1b5f9eb23e438f8.jpg\' , `description` = \'山水测试\' , `create_time` = 1620294961 , `update_time` = 1620294961' , `client_browser` = 'Chrome' , `client_os` = 'Mac' , `client_device` = 'Mac' , `update_time` = 1620294961 , `create_time` = 1620294961 [ RunTime:0.042304s ] |
|||
[2021-05-06T17:56:01+08:00][sql] CONNECT:[ UseTime:0.086203s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:56:01+08:00][sql] SHOW FULL COLUMNS FROM `system_image_storages` [ RunTime:0.067617s ] |
|||
[2021-05-06T17:56:01+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_image_storages` WHERE `system_image_storages`.`delete_time` IS NULL [ RunTime:0.077169s ] |
|||
[2021-05-06T17:56:01+08:00][sql] SELECT * FROM `system_image_storages` WHERE `system_image_storages`.`delete_time` IS NULL [ RunTime:0.071116s ] |
|||
[2021-05-06T17:56:42+08:00][sql] CONNECT:[ UseTime:0.086160s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:56:42+08:00][sql] SHOW FULL COLUMNS FROM `system_image_storages` [ RunTime:0.066856s ] |
|||
[2021-05-06T17:56:42+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_image_storages` WHERE `system_image_storages`.`delete_time` IS NULL [ RunTime:0.052290s ] |
|||
[2021-05-06T17:56:42+08:00][sql] SELECT * FROM `system_image_storages` WHERE `system_image_storages`.`delete_time` IS NULL [ RunTime:0.057414s ] |
|||
[2021-05-06T17:59:13+08:00][sql] CONNECT:[ UseTime:0.072397s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:59:13+08:00][sql] SHOW FULL COLUMNS FROM `system_upload_log` [ RunTime:0.044259s ] |
|||
[2021-05-06T17:59:13+08:00][sql] CONNECT:[ UseTime:0.095524s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:59:13+08:00][sql] SHOW FULL COLUMNS FROM `system_image_storages` [ RunTime:0.067568s ] |
|||
[2021-05-06T17:59:13+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_image_storages` WHERE `system_image_storages`.`delete_time` IS NULL [ RunTime:0.076703s ] |
|||
[2021-05-06T17:59:13+08:00][sql] SELECT * FROM `system_image_storages` WHERE `system_image_storages`.`delete_time` IS NULL [ RunTime:0.065814s ] |
|||
[2021-05-06T17:59:13+08:00][sql] CONNECT:[ UseTime:0.098578s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:59:13+08:00][sql] SHOW FULL COLUMNS FROM `system_upload_log` [ RunTime:0.065503s ] |
|||
[2021-05-06T17:59:19+08:00][sql] CONNECT:[ UseTime:0.094919s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:59:19+08:00][sql] SHOW FULL COLUMNS FROM `system_image_storages` [ RunTime:0.060947s ] |
|||
[2021-05-06T17:59:19+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_image_storages` WHERE `system_image_storages`.`delete_time` IS NULL [ RunTime:0.063577s ] |
|||
[2021-05-06T17:59:19+08:00][sql] SELECT * FROM `system_image_storages` WHERE `system_image_storages`.`delete_time` IS NULL [ RunTime:0.060041s ] |
|||
[2021-05-06T17:59:39+08:00][sql] CONNECT:[ UseTime:0.102631s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:59:39+08:00][sql] SHOW FULL COLUMNS FROM `system_image_storages` [ RunTime:0.060486s ] |
|||
[2021-05-06T17:59:39+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_image_storages` WHERE ( `type` = 3 AND `site_id` = 1 AND ( `title` LIKE '%2%' ) ) AND `system_image_storages`.`delete_time` IS NULL [ RunTime:0.058039s ] |
|||
[2021-05-06T17:59:39+08:00][sql] SELECT * FROM `system_image_storages` WHERE ( `type` = 3 AND `site_id` = 1 AND ( `title` LIKE '%2%' ) ) AND `system_image_storages`.`delete_time` IS NULL ORDER BY `create_time` DESC LIMIT 0,10 [ RunTime:0.062910s ] |
|||
[2021-05-06T17:59:59+08:00][sql] CONNECT:[ UseTime:0.080211s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T17:59:59+08:00][sql] SHOW FULL COLUMNS FROM `system_image_storages` [ RunTime:0.073654s ] |
|||
[2021-05-06T17:59:59+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_image_storages` WHERE ( `type` = 1 AND `site_id` = 1 ) AND `system_image_storages`.`delete_time` IS NULL [ RunTime:0.048779s ] |
|||
[2021-05-06T17:59:59+08:00][sql] SELECT * FROM `system_image_storages` WHERE ( `type` = 1 AND `site_id` = 1 ) AND `system_image_storages`.`delete_time` IS NULL ORDER BY `create_time` DESC LIMIT 0,20 [ RunTime:0.046248s ] |
|||
[2021-05-06T18:00:03+08:00][sql] CONNECT:[ UseTime:0.121191s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T18:00:03+08:00][sql] SHOW FULL COLUMNS FROM `system_image_storages` [ RunTime:0.086219s ] |
|||
[2021-05-06T18:00:03+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_image_storages` WHERE `system_image_storages`.`delete_time` IS NULL [ RunTime:0.055302s ] |
|||
[2021-05-06T18:00:03+08:00][sql] SELECT * FROM `system_image_storages` WHERE `system_image_storages`.`delete_time` IS NULL [ RunTime:0.074479s ] |
|||
[2021-05-06T18:01:07+08:00][sql] CONNECT:[ UseTime:0.077987s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T18:01:07+08:00][sql] SHOW FULL COLUMNS FROM `system_image_storages` [ RunTime:0.048767s ] |
|||
[2021-05-06T18:01:07+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_image_storages` WHERE `system_image_storages`.`delete_time` IS NULL [ RunTime:0.048563s ] |
|||
[2021-05-06T18:01:07+08:00][sql] SELECT * FROM `system_image_storages` WHERE `system_image_storages`.`delete_time` IS NULL [ RunTime:0.045778s ] |
|||
[2021-05-06T18:01:28+08:00][sql] CONNECT:[ UseTime:0.105265s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T18:01:28+08:00][sql] SHOW FULL COLUMNS FROM `system_image_storages` [ RunTime:0.062040s ] |
|||
[2021-05-06T18:01:28+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_image_storages` WHERE `system_image_storages`.`delete_time` IS NULL [ RunTime:0.061633s ] |
|||
[2021-05-06T18:01:28+08:00][sql] SELECT * FROM `system_image_storages` WHERE `system_image_storages`.`delete_time` IS NULL [ RunTime:0.059863s ] |
|||
[2021-05-06T18:02:17+08:00][sql] CONNECT:[ UseTime:0.078998s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T18:02:17+08:00][sql] SHOW FULL COLUMNS FROM `system_image_storages` [ RunTime:0.064477s ] |
|||
[2021-05-06T18:02:17+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_image_storages` WHERE `system_image_storages`.`delete_time` IS NULL [ RunTime:0.053089s ] |
|||
[2021-05-06T18:02:17+08:00][sql] SELECT * FROM `system_image_storages` WHERE `system_image_storages`.`delete_time` IS NULL [ RunTime:0.071982s ] |
|||
[2021-05-06T18:03:05+08:00][sql] CONNECT:[ UseTime:0.090696s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T18:03:05+08:00][sql] SHOW FULL COLUMNS FROM `system_image_storages` [ RunTime:0.055893s ] |
|||
[2021-05-06T18:03:05+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_image_storages` WHERE `system_image_storages`.`delete_time` IS NULL [ RunTime:0.065901s ] |
|||
[2021-05-06T18:03:05+08:00][sql] SELECT * FROM `system_image_storages` WHERE `system_image_storages`.`delete_time` IS NULL [ RunTime:0.059640s ] |
|||
[2021-05-06T18:03:14+08:00][sql] CONNECT:[ UseTime:0.102810s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T18:03:14+08:00][sql] SHOW FULL COLUMNS FROM `system_image_storages` [ RunTime:0.056746s ] |
|||
[2021-05-06T18:03:14+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_image_storages` WHERE `system_image_storages`.`delete_time` IS NULL [ RunTime:0.055645s ] |
|||
[2021-05-06T18:03:14+08:00][sql] SELECT * FROM `system_image_storages` WHERE `system_image_storages`.`delete_time` IS NULL [ RunTime:0.057152s ] |
|||
[2021-05-06T18:06:37+08:00][sql] CONNECT:[ UseTime:0.085548s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T18:06:37+08:00][sql] SHOW FULL COLUMNS FROM `system_image_storages` [ RunTime:0.058345s ] |
|||
[2021-05-06T18:06:37+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_image_storages` WHERE ( `type` = 1 AND `site_id` = 1 AND ( `title` LIKE '%2%' ) ) AND `system_image_storages`.`delete_time` IS NULL [ RunTime:0.059589s ] |
|||
[2021-05-06T18:06:37+08:00][sql] SELECT * FROM `system_image_storages` WHERE ( `type` = 1 AND `site_id` = 1 AND ( `title` LIKE '%2%' ) ) AND `system_image_storages`.`delete_time` IS NULL ORDER BY `create_time` DESC LIMIT 0,20 [ RunTime:0.059945s ] |
|||
[2021-05-06T18:06:42+08:00][sql] CONNECT:[ UseTime:0.091396s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T18:06:42+08:00][sql] SHOW FULL COLUMNS FROM `system_image_storages` [ RunTime:0.054271s ] |
|||
[2021-05-06T18:06:42+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_image_storages` WHERE ( `site_id` = 1 AND ( `title` LIKE '%2%' ) ) AND `system_image_storages`.`delete_time` IS NULL [ RunTime:0.053558s ] |
|||
[2021-05-06T18:06:42+08:00][sql] SELECT * FROM `system_image_storages` WHERE ( `site_id` = 1 AND ( `title` LIKE '%2%' ) ) AND `system_image_storages`.`delete_time` IS NULL ORDER BY `create_time` DESC LIMIT 0,20 [ RunTime:0.058670s ] |
|||
[2021-05-06T18:06:53+08:00][sql] CONNECT:[ UseTime:0.101408s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T18:06:53+08:00][sql] SHOW FULL COLUMNS FROM `system_image_storages` [ RunTime:0.055968s ] |
|||
[2021-05-06T18:06:53+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_image_storages` WHERE ( `type` = 3 AND `site_id` = 1 AND ( `title` LIKE '%2%' ) ) AND `system_image_storages`.`delete_time` IS NULL [ RunTime:0.053343s ] |
|||
[2021-05-06T18:06:53+08:00][sql] SELECT * FROM `system_image_storages` WHERE ( `type` = 3 AND `site_id` = 1 AND ( `title` LIKE '%2%' ) ) AND `system_image_storages`.`delete_time` IS NULL ORDER BY `create_time` DESC LIMIT 0,10 [ RunTime:0.051971s ] |
|||
[2021-05-06T18:06:56+08:00][sql] CONNECT:[ UseTime:0.080906s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T18:06:56+08:00][sql] SHOW FULL COLUMNS FROM `system_image_storages` [ RunTime:0.049135s ] |
|||
[2021-05-06T18:06:56+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_image_storages` WHERE ( `type` = 3 AND `site_id` = 1 ) AND `system_image_storages`.`delete_time` IS NULL [ RunTime:0.051595s ] |
|||
[2021-05-06T18:06:56+08:00][sql] SELECT * FROM `system_image_storages` WHERE ( `type` = 3 AND `site_id` = 1 ) AND `system_image_storages`.`delete_time` IS NULL ORDER BY `create_time` DESC LIMIT 0,10 [ RunTime:0.050706s ] |
|||
[2021-05-06T18:06:58+08:00][sql] CONNECT:[ UseTime:0.358823s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T18:06:58+08:00][sql] SHOW FULL COLUMNS FROM `system_image_storages` [ RunTime:0.052395s ] |
|||
[2021-05-06T18:06:58+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_image_storages` WHERE ( `site_id` = 1 ) AND `system_image_storages`.`delete_time` IS NULL [ RunTime:0.050734s ] |
|||
[2021-05-06T18:06:58+08:00][sql] SELECT * FROM `system_image_storages` WHERE ( `site_id` = 1 ) AND `system_image_storages`.`delete_time` IS NULL ORDER BY `create_time` DESC LIMIT 0,10 [ RunTime:0.051400s ] |
|||
[2021-05-06T18:07:00+08:00][sql] CONNECT:[ UseTime:0.088338s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T18:07:00+08:00][sql] SHOW FULL COLUMNS FROM `system_image_storages` [ RunTime:0.060269s ] |
|||
[2021-05-06T18:07:00+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_image_storages` WHERE ( `site_id` = 1 AND ( `title` LIKE '%2%' ) ) AND `system_image_storages`.`delete_time` IS NULL [ RunTime:0.055581s ] |
|||
[2021-05-06T18:07:00+08:00][sql] SELECT * FROM `system_image_storages` WHERE ( `site_id` = 1 AND ( `title` LIKE '%2%' ) ) AND `system_image_storages`.`delete_time` IS NULL ORDER BY `create_time` DESC LIMIT 0,10 [ RunTime:0.054338s ] |
|||
[2021-05-06T18:07:05+08:00][sql] CONNECT:[ UseTime:0.093994s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T18:07:05+08:00][sql] SHOW FULL COLUMNS FROM `system_image_storages` [ RunTime:0.057677s ] |
|||
[2021-05-06T18:07:05+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_image_storages` WHERE ( `site_id` = 1 AND ( `title` LIKE '%测试%' ) ) AND `system_image_storages`.`delete_time` IS NULL [ RunTime:0.058621s ] |
|||
[2021-05-06T18:07:05+08:00][sql] SELECT * FROM `system_image_storages` WHERE ( `site_id` = 1 AND ( `title` LIKE '%测试%' ) ) AND `system_image_storages`.`delete_time` IS NULL ORDER BY `create_time` DESC LIMIT 0,10 [ RunTime:0.064360s ] |
|||
[2021-05-06T18:07:45+08:00][sql] CONNECT:[ UseTime:0.099706s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T18:07:45+08:00][sql] SHOW FULL COLUMNS FROM `system_image_storages` [ RunTime:0.064526s ] |
|||
[2021-05-06T18:07:45+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_image_storages` WHERE ( `site_id` = 1 AND ( `title` LIKE '%ces%' ) ) AND `system_image_storages`.`delete_time` IS NULL [ RunTime:0.071435s ] |
|||
[2021-05-06T18:07:45+08:00][sql] SELECT * FROM `system_image_storages` WHERE ( `site_id` = 1 AND ( `title` LIKE '%ces%' ) ) AND `system_image_storages`.`delete_time` IS NULL ORDER BY `create_time` DESC LIMIT 0,10 [ RunTime:0.059535s ] |
|||
[2021-05-06T18:07:49+08:00][sql] CONNECT:[ UseTime:0.076711s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T18:07:49+08:00][sql] SHOW FULL COLUMNS FROM `system_image_storages` [ RunTime:0.050985s ] |
|||
[2021-05-06T18:07:49+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_image_storages` WHERE ( `site_id` = 1 ) AND `system_image_storages`.`delete_time` IS NULL [ RunTime:0.057097s ] |
|||
[2021-05-06T18:07:49+08:00][sql] SELECT * FROM `system_image_storages` WHERE ( `site_id` = 1 ) AND `system_image_storages`.`delete_time` IS NULL ORDER BY `create_time` DESC LIMIT 0,10 [ RunTime:0.053449s ] |
|||
[2021-05-06T18:09:00+08:00][sql] CONNECT:[ UseTime:0.070796s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T18:09:00+08:00][sql] SHOW FULL COLUMNS FROM `system_upload_log` [ RunTime:0.056018s ] |
|||
[2021-05-06T18:09:01+08:00][sql] CONNECT:[ UseTime:0.063957s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T18:09:01+08:00][sql] SHOW FULL COLUMNS FROM `system_image_storages` [ RunTime:0.046545s ] |
|||
[2021-05-06T18:09:01+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_image_storages` WHERE ( `site_id` = 1 ) AND `system_image_storages`.`delete_time` IS NULL [ RunTime:0.046636s ] |
|||
[2021-05-06T18:09:01+08:00][sql] SELECT * FROM `system_image_storages` WHERE ( `site_id` = 1 ) AND `system_image_storages`.`delete_time` IS NULL ORDER BY `create_time` DESC LIMIT 0,10 [ RunTime:0.045111s ] |
|||
[2021-05-06T18:09:01+08:00][sql] CONNECT:[ UseTime:0.076998s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T18:09:01+08:00][sql] SHOW FULL COLUMNS FROM `system_upload_log` [ RunTime:0.065273s ] |
|||
[2021-05-06T18:09:05+08:00][sql] CONNECT:[ UseTime:0.075965s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T18:09:05+08:00][sql] SHOW FULL COLUMNS FROM `system_image_storages` [ RunTime:0.045471s ] |
|||
[2021-05-06T18:09:05+08:00][sql] SELECT * FROM `system_image_storages` WHERE ( `id` = 3 AND `site_id` = 1 ) AND `system_image_storages`.`delete_time` IS NULL [ RunTime:0.048358s ] |
|||
[2021-05-06T18:09:05+08:00][sql] SELECT * FROM `system_image_storages` WHERE `id` = 3 [ RunTime:0.046922s ] |
|||
[2021-05-06T18:09:05+08:00][sql] UPDATE `system_image_storages` SET `delete_time` = 1620295744 , `update_time` = 1620295744 WHERE ( `id` = 3 ) AND `system_image_storages`.`delete_time` IS NULL [ RunTime:0.049192s ] |
|||
[2021-05-06T18:09:05+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.054548s ] |
|||
[2021-05-06T18:09:05+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.051012s ] |
|||
[2021-05-06T18:09:05+08:00][sql] SHOW FULL COLUMNS FROM `system_action_log` [ RunTime:0.060506s ] |
|||
[2021-05-06T18:09:05+08:00][sql] INSERT INTO `system_action_log` SET `site_id` = 1 , `user_id` = 1 , `username` = 'admin' , `action_ip` = 2130706433 , `request_method` = 'POST' , `request_param` = '{\"id\":\"3\"}' , `model` = '/api/ImageStorage/delete/' , `url` = 'api.base.ahbmz.com/api/ImageStorage/delete/' , `spend_time` = '0.9005' , `record_id` = '3' , `remark` = '未检测到日志信息模型,请检查CURR_THIS反射常量!!!' , `data` = '{\"id\":3,\"site_id\":1,\"title\":\"\\u6d4b\\u8bd52\",\"description\":\"\\u5c71\\u6c34\\u6d4b\\u8bd5\",\"type\":3,\"url\":\"http:\\/\\/static.ahbmz.com\\/localhost:8080\\/2021\\/05\\/06\\/5fe19bb79d9b2d75c1b5f9eb23e438f8.jpg\",\"delete_time\":1620295744,\"update_time\":\"2021-05-06 18:09:04\",\"create_time\":1620294961}' , `origin` = '[]' , `sql` = 'UPDATE `system_image_storages` SET `delete_time` = 1620295744 , `update_time` = 1620295744 WHERE ( `id` = 3 ) AND `system_image_storages`.`delete_time` IS NULL' , `client_browser` = 'Chrome' , `client_os` = 'Mac' , `client_device` = 'Mac' , `update_time` = 1620295744 , `create_time` = 1620295744 [ RunTime:0.047191s ] |
|||
[2021-05-06T18:09:05+08:00][sql] CONNECT:[ UseTime:0.085637s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T18:09:05+08:00][sql] SHOW FULL COLUMNS FROM `system_image_storages` [ RunTime:0.054586s ] |
|||
[2021-05-06T18:09:05+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_image_storages` WHERE ( `site_id` = 1 ) AND `system_image_storages`.`delete_time` IS NULL [ RunTime:0.051907s ] |
|||
[2021-05-06T18:09:05+08:00][sql] SELECT * FROM `system_image_storages` WHERE ( `site_id` = 1 ) AND `system_image_storages`.`delete_time` IS NULL ORDER BY `create_time` DESC LIMIT 0,10 [ RunTime:0.050536s ] |
|||
[2021-05-06T18:13:40+08:00][sql] CONNECT:[ UseTime:0.096104s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T18:13:40+08:00][sql] SHOW FULL COLUMNS FROM `system_image_storages` [ RunTime:0.061062s ] |
|||
[2021-05-06T18:13:40+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_image_storages` WHERE ( `site_id` = 1 ) AND `system_image_storages`.`delete_time` IS NULL [ RunTime:0.052998s ] |
|||
[2021-05-06T18:13:40+08:00][sql] SELECT * FROM `system_image_storages` WHERE ( `site_id` = 1 ) AND `system_image_storages`.`delete_time` IS NULL ORDER BY `create_time` DESC LIMIT 0,10 [ RunTime:0.063306s ] |
|||
[2021-05-06T18:14:32+08:00][sql] CONNECT:[ UseTime:0.059909s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T18:14:32+08:00][sql] SHOW FULL COLUMNS FROM `bmz_config` [ RunTime:0.040191s ] |
|||
[2021-05-06T18:14:32+08:00][sql] SELECT COUNT(*) AS think_count FROM `bmz_config` WHERE ( `site_id` = 1 ) AND `bmz_config`.`delete_time` IS NULL [ RunTime:0.042745s ] |
|||
[2021-05-06T18:14:32+08:00][sql] SELECT * FROM `bmz_config` WHERE ( `site_id` = 1 ) AND `bmz_config`.`delete_time` IS NULL ORDER BY `create_time` DESC [ RunTime:0.042706s ] |
|||
[2021-05-06T18:14:40+08:00][sql] CONNECT:[ UseTime:0.081776s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T18:14:40+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.048425s ] |
|||
[2021-05-06T18:14:40+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `site_id` = 1 AND `authority` IS NULL LIMIT 1 [ RunTime:0.045720s ] |
|||
[2021-05-06T18:14:40+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_auth_rule` WHERE ( `site_id` = 1 ) AND `system_auth_rule`.`delete_time` IS NULL [ RunTime:0.044490s ] |
|||
[2021-05-06T18:14:40+08:00][sql] SELECT * FROM `system_auth_rule` WHERE ( `site_id` = 1 ) AND `system_auth_rule`.`delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.055867s ] |
|||
[2021-05-06T18:15:24+08:00][sql] CONNECT:[ UseTime:0.097857s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T18:15:24+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.077585s ] |
|||
[2021-05-06T18:15:24+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `site_id` = 1 AND `name` = 'api/ImageStorage/add' LIMIT 1 [ RunTime:0.065911s ] |
|||
[2021-05-06T18:15:36+08:00][sql] CONNECT:[ UseTime:0.096709s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T18:15:36+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.056976s ] |
|||
[2021-05-06T18:15:36+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `site_id` = 1 AND `name` = 'api/ImageStorage/add' LIMIT 1 [ RunTime:0.062906s ] |
|||
[2021-05-06T18:16:01+08:00][sql] CONNECT:[ UseTime:0.458169s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T18:16:01+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.102239s ] |
|||
[2021-05-06T18:16:01+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `site_id` = 1 AND `name` = '添加图库' LIMIT 1 [ RunTime:0.071032s ] |
|||
[2021-05-06T18:16:01+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `site_id` = 1 AND `authority` IS NULL LIMIT 1 [ RunTime:0.096987s ] |
|||
[2021-05-06T18:16:01+08:00][sql] SELECT MAX(`child_list`) AS think_max FROM `system_auth_rule` WHERE ( `parent_id` = 200 ) AND `system_auth_rule`.`delete_time` IS NULL [ RunTime:0.069903s ] |
|||
[2021-05-06T18:16:01+08:00][sql] SELECT `child_list` FROM `system_auth_rule` WHERE ( `id` = 200 ) AND `system_auth_rule`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.052018s ] |
|||
[2021-05-06T18:16:01+08:00][sql] INSERT INTO `system_auth_rule` SET `menu_type` = 1 , `open_type` = 0 , `hide` = 0 , `is_manager_use` = 0 , `parent_id` = 200 , `sort` = 1 , `name` = '添加图库' , `icon` = '' , `path` = '' , `component` = '' , `model_name` = 'api/ImageStorage/add' , `child_list` = '101137100' , `create_time` = 1620296161 , `update_time` = 1620296161 [ RunTime:0.046045s ] |
|||
[2021-05-06T18:16:01+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.109294s ] |
|||
[2021-05-06T18:16:01+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.087234s ] |
|||
[2021-05-06T18:16:01+08:00][sql] SHOW FULL COLUMNS FROM `system_action_log` [ RunTime:0.058525s ] |
|||
[2021-05-06T18:16:01+08:00][sql] INSERT INTO `system_action_log` SET `site_id` = 1 , `user_id` = 1 , `username` = 'admin' , `action_ip` = 2130706433 , `request_method` = 'POST' , `request_param` = '{\"menu_type\":\"1\",\"open_type\":\"0\",\"hide\":\"0\",\"isShow\":\"1\",\"is_manager_use\":\"0\",\"isManager\":\"\",\"parent_id\":\"200\",\"sort\":\"1\",\"name\":\"\\u6dfb\\u52a0\\u56fe\\u5e93\",\"icon\":\"\",\"path\":\"\",\"component\":\"\",\"model_name\":\"api\\/ImageStorage\\/add\"}' , `model` = '/api/menu/add' , `url` = 'api.base.ahbmz.com/api/menu/add' , `spend_time` = '1.5429' , `record_id` = '201' , `remark` = 'admin 在 2021-05-06 18:16:01 创建了权限菜单:添加图库' , `data` = '{\"menu_type\":\"1\",\"open_type\":\"0\",\"hide\":\"0\",\"isShow\":\"1\",\"is_manager_use\":\"0\",\"isManager\":\"\",\"parent_id\":\"200\",\"sort\":\"1\",\"name\":\"\\u6dfb\\u52a0\\u56fe\\u5e93\",\"icon\":\"\",\"path\":\"\",\"component\":\"\",\"model_name\":\"api\\/ImageStorage\\/add\",\"child_list\":\"101137100\",\"copy_safe_id\":0,\"copy_safe_site_id\":1,\"create_time\":\"2021-05-06 18:16:01\",\"update_time\":\"2021-05-06 18:16:01\",\"id\":\"201\"}' , `origin` = '[]' , `sql` = 'INSERT INTO `system_auth_rule` SET `menu_type` = 1 , `open_type` = 0 , `hide` = 0 , `is_manager_use` = 0 , `parent_id` = 200 , `sort` = 1 , `name` = \'添加图库\' , `icon` = \'\' , `path` = \'\' , `component` = \'\' , `model_name` = \'api/ImageStorage/add\' , `child_list` = \'101137100\' , `create_time` = 1620296161 , `update_time` = 1620296161' , `client_browser` = 'Chrome' , `client_os` = 'Mac' , `client_device` = 'Mac' , `update_time` = 1620296161 , `create_time` = 1620296161 [ RunTime:0.114697s ] |
|||
[2021-05-06T18:16:02+08:00][sql] CONNECT:[ UseTime:0.332843s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T18:16:02+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.366775s ] |
|||
[2021-05-06T18:16:02+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `site_id` = 1 AND `authority` IS NULL LIMIT 1 [ RunTime:0.062971s ] |
|||
[2021-05-06T18:16:02+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_auth_rule` WHERE ( `site_id` = 1 ) AND `system_auth_rule`.`delete_time` IS NULL [ RunTime:0.058152s ] |
|||
[2021-05-06T18:16:02+08:00][sql] SELECT * FROM `system_auth_rule` WHERE ( `site_id` = 1 ) AND `system_auth_rule`.`delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.056684s ] |
|||
[2021-05-06T18:16:35+08:00][sql] CONNECT:[ UseTime:0.091851s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T18:16:35+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.052501s ] |
|||
[2021-05-06T18:16:35+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `site_id` = 1 AND `name` = '修改图库' LIMIT 1 [ RunTime:0.057793s ] |
|||
[2021-05-06T18:16:35+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `site_id` = 1 AND `authority` IS NULL LIMIT 1 [ RunTime:0.055479s ] |
|||
[2021-05-06T18:16:35+08:00][sql] SELECT MAX(`child_list`) AS think_max FROM `system_auth_rule` WHERE ( `parent_id` = 200 ) AND `system_auth_rule`.`delete_time` IS NULL [ RunTime:0.052548s ] |
|||
[2021-05-06T18:16:35+08:00][sql] SELECT `child_list` FROM `system_auth_rule` WHERE ( `id` = 200 ) AND `system_auth_rule`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.050475s ] |
|||
[2021-05-06T18:16:35+08:00][sql] INSERT INTO `system_auth_rule` SET `menu_type` = 1 , `open_type` = 0 , `hide` = 0 , `is_manager_use` = 0 , `parent_id` = 200 , `sort` = 2 , `model_name` = 'api/ImageStorage/edit' , `icon` = '' , `path` = '' , `component` = '' , `name` = '修改图库' , `child_list` = '101137101' , `create_time` = 1620296195 , `update_time` = 1620296195 [ RunTime:0.055971s ] |
|||
[2021-05-06T18:16:35+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.053336s ] |
|||
[2021-05-06T18:16:35+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.056873s ] |
|||
[2021-05-06T18:16:35+08:00][sql] SHOW FULL COLUMNS FROM `system_action_log` [ RunTime:0.055018s ] |
|||
[2021-05-06T18:16:35+08:00][sql] INSERT INTO `system_action_log` SET `site_id` = 1 , `user_id` = 1 , `username` = 'admin' , `action_ip` = 2130706433 , `request_method` = 'POST' , `request_param` = '{\"menu_type\":\"1\",\"open_type\":\"0\",\"hide\":\"0\",\"isShow\":\"1\",\"is_manager_use\":\"0\",\"isManager\":\"\",\"parent_id\":\"200\",\"sort\":\"2\",\"model_name\":\"api\\/ImageStorage\\/edit\",\"icon\":\"\",\"path\":\"\",\"component\":\"\",\"name\":\"\\u4fee\\u6539\\u56fe\\u5e93\"}' , `model` = '/api/menu/add' , `url` = 'api.base.ahbmz.com/api/menu/add' , `spend_time` = '1.4205' , `record_id` = '202' , `remark` = 'admin 在 2021-05-06 18:16:35 创建了权限菜单:修改图库' , `data` = '{\"menu_type\":\"1\",\"open_type\":\"0\",\"hide\":\"0\",\"isShow\":\"1\",\"is_manager_use\":\"0\",\"isManager\":\"\",\"parent_id\":\"200\",\"sort\":\"2\",\"model_name\":\"api\\/ImageStorage\\/edit\",\"icon\":\"\",\"path\":\"\",\"component\":\"\",\"name\":\"\\u4fee\\u6539\\u56fe\\u5e93\",\"child_list\":101137101,\"copy_safe_id\":0,\"copy_safe_site_id\":1,\"create_time\":\"2021-05-06 18:16:35\",\"update_time\":\"2021-05-06 18:16:35\",\"id\":\"202\"}' , `origin` = '[]' , `sql` = 'INSERT INTO `system_auth_rule` SET `menu_type` = 1 , `open_type` = 0 , `hide` = 0 , `is_manager_use` = 0 , `parent_id` = 200 , `sort` = 2 , `model_name` = \'api/ImageStorage/edit\' , `icon` = \'\' , `path` = \'\' , `component` = \'\' , `name` = \'修改图库\' , `child_list` = \'101137101\' , `create_time` = 1620296195 , `update_time` = 1620296195' , `client_browser` = 'Chrome' , `client_os` = 'Mac' , `client_device` = 'Mac' , `update_time` = 1620296195 , `create_time` = 1620296195 [ RunTime:0.073522s ] |
|||
[2021-05-06T18:16:36+08:00][sql] CONNECT:[ UseTime:0.088076s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T18:16:36+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.060650s ] |
|||
[2021-05-06T18:16:36+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `site_id` = 1 AND `authority` IS NULL LIMIT 1 [ RunTime:0.063782s ] |
|||
[2021-05-06T18:16:36+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_auth_rule` WHERE ( `site_id` = 1 ) AND `system_auth_rule`.`delete_time` IS NULL [ RunTime:0.056347s ] |
|||
[2021-05-06T18:16:36+08:00][sql] SELECT * FROM `system_auth_rule` WHERE ( `site_id` = 1 ) AND `system_auth_rule`.`delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.063119s ] |
|||
[2021-05-06T18:16:52+08:00][sql] CONNECT:[ UseTime:0.120763s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T18:16:52+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.049931s ] |
|||
[2021-05-06T18:16:52+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `site_id` = 1 AND `name` = '删除图库' LIMIT 1 [ RunTime:0.073534s ] |
|||
[2021-05-06T18:16:52+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `site_id` = 1 AND `authority` IS NULL LIMIT 1 [ RunTime:0.052766s ] |
|||
[2021-05-06T18:16:52+08:00][sql] SELECT MAX(`child_list`) AS think_max FROM `system_auth_rule` WHERE ( `parent_id` = 200 ) AND `system_auth_rule`.`delete_time` IS NULL [ RunTime:0.056634s ] |
|||
[2021-05-06T18:16:52+08:00][sql] SELECT `child_list` FROM `system_auth_rule` WHERE ( `id` = 200 ) AND `system_auth_rule`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.056034s ] |
|||
[2021-05-06T18:16:52+08:00][sql] INSERT INTO `system_auth_rule` SET `menu_type` = 1 , `open_type` = 0 , `hide` = 0 , `is_manager_use` = 0 , `parent_id` = 200 , `sort` = 3 , `icon` = '' , `path` = '' , `component` = '' , `name` = '删除图库' , `model_name` = 'api/ImageStorage/delete' , `child_list` = '101137102' , `create_time` = 1620296212 , `update_time` = 1620296212 [ RunTime:0.052380s ] |
|||
[2021-05-06T18:16:52+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.062311s ] |
|||
[2021-05-06T18:16:52+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.054613s ] |
|||
[2021-05-06T18:16:52+08:00][sql] SHOW FULL COLUMNS FROM `system_action_log` [ RunTime:0.058058s ] |
|||
[2021-05-06T18:16:52+08:00][sql] INSERT INTO `system_action_log` SET `site_id` = 1 , `user_id` = 1 , `username` = 'admin' , `action_ip` = 2130706433 , `request_method` = 'POST' , `request_param` = '{\"menu_type\":\"1\",\"open_type\":\"0\",\"hide\":\"0\",\"isShow\":\"1\",\"is_manager_use\":\"0\",\"isManager\":\"\",\"parent_id\":\"200\",\"sort\":\"3\",\"icon\":\"\",\"path\":\"\",\"component\":\"\",\"name\":\"\\u5220\\u9664\\u56fe\\u5e93\",\"model_name\":\"api\\/ImageStorage\\/delete\"}' , `model` = '/api/menu/add' , `url` = 'api.base.ahbmz.com/api/menu/add' , `spend_time` = '1.2546' , `record_id` = '203' , `remark` = 'admin 在 2021-05-06 18:16:52 创建了权限菜单:删除图库' , `data` = '{\"menu_type\":\"1\",\"open_type\":\"0\",\"hide\":\"0\",\"isShow\":\"1\",\"is_manager_use\":\"0\",\"isManager\":\"\",\"parent_id\":\"200\",\"sort\":\"3\",\"icon\":\"\",\"path\":\"\",\"component\":\"\",\"name\":\"\\u5220\\u9664\\u56fe\\u5e93\",\"model_name\":\"api\\/ImageStorage\\/delete\",\"child_list\":101137102,\"copy_safe_id\":0,\"copy_safe_site_id\":1,\"create_time\":\"2021-05-06 18:16:52\",\"update_time\":\"2021-05-06 18:16:52\",\"id\":\"203\"}' , `origin` = '[]' , `sql` = 'INSERT INTO `system_auth_rule` SET `menu_type` = 1 , `open_type` = 0 , `hide` = 0 , `is_manager_use` = 0 , `parent_id` = 200 , `sort` = 3 , `icon` = \'\' , `path` = \'\' , `component` = \'\' , `name` = \'删除图库\' , `model_name` = \'api/ImageStorage/delete\' , `child_list` = \'101137102\' , `create_time` = 1620296212 , `update_time` = 1620296212' , `client_browser` = 'Chrome' , `client_os` = 'Mac' , `client_device` = 'Mac' , `update_time` = 1620296212 , `create_time` = 1620296212 [ RunTime:0.051074s ] |
|||
[2021-05-06T18:16:52+08:00][sql] CONNECT:[ UseTime:0.107882s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T18:16:52+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.066868s ] |
|||
[2021-05-06T18:16:52+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `site_id` = 1 AND `authority` IS NULL LIMIT 1 [ RunTime:0.070891s ] |
|||
[2021-05-06T18:16:52+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_auth_rule` WHERE ( `site_id` = 1 ) AND `system_auth_rule`.`delete_time` IS NULL [ RunTime:0.070568s ] |
|||
[2021-05-06T18:16:52+08:00][sql] SELECT * FROM `system_auth_rule` WHERE ( `site_id` = 1 ) AND `system_auth_rule`.`delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.072674s ] |
|||
[2021-05-06T18:17:50+08:00][sql] CONNECT:[ UseTime:0.095231s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T18:17:50+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.048145s ] |
|||
[2021-05-06T18:17:50+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `site_id` = 1 AND `name` = '获取素材分类' LIMIT 1 [ RunTime:0.050559s ] |
|||
[2021-05-06T18:17:50+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `site_id` = 1 AND `authority` IS NULL LIMIT 1 [ RunTime:0.049245s ] |
|||
[2021-05-06T18:17:50+08:00][sql] SELECT MAX(`child_list`) AS think_max FROM `system_auth_rule` WHERE ( `parent_id` = 200 ) AND `system_auth_rule`.`delete_time` IS NULL [ RunTime:0.051819s ] |
|||
[2021-05-06T18:17:50+08:00][sql] SELECT `child_list` FROM `system_auth_rule` WHERE ( `id` = 200 ) AND `system_auth_rule`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.047364s ] |
|||
[2021-05-06T18:17:50+08:00][sql] INSERT INTO `system_auth_rule` SET `menu_type` = 1 , `open_type` = 0 , `hide` = 0 , `is_manager_use` = 0 , `parent_id` = 200 , `sort` = 4 , `name` = '获取素材分类' , `model_name` = '/uploadLog/getTagLists' , `icon` = '' , `path` = '' , `component` = '' , `child_list` = '101137103' , `create_time` = 1620296270 , `update_time` = 1620296270 [ RunTime:0.047538s ] |
|||
[2021-05-06T18:17:50+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.051133s ] |
|||
[2021-05-06T18:17:50+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.047530s ] |
|||
[2021-05-06T18:17:50+08:00][sql] SHOW FULL COLUMNS FROM `system_action_log` [ RunTime:0.055467s ] |
|||
[2021-05-06T18:17:50+08:00][sql] INSERT INTO `system_action_log` SET `site_id` = 1 , `user_id` = 1 , `username` = 'admin' , `action_ip` = 2130706433 , `request_method` = 'POST' , `request_param` = '{\"menu_type\":\"1\",\"open_type\":\"0\",\"hide\":\"0\",\"isShow\":\"1\",\"is_manager_use\":\"0\",\"isManager\":\"\",\"parent_id\":\"200\",\"sort\":\"4\",\"name\":\"\\u83b7\\u53d6\\u7d20\\u6750\\u5206\\u7c7b\",\"model_name\":\"\\/uploadLog\\/getTagLists\",\"icon\":\"\",\"path\":\"\",\"component\":\"\"}' , `model` = '/api/menu/add' , `url` = 'api.base.ahbmz.com/api/menu/add' , `spend_time` = '1.4303' , `record_id` = '204' , `remark` = 'admin 在 2021-05-06 18:17:50 创建了权限菜单:获取素材分类' , `data` = '{\"menu_type\":\"1\",\"open_type\":\"0\",\"hide\":\"0\",\"isShow\":\"1\",\"is_manager_use\":\"0\",\"isManager\":\"\",\"parent_id\":\"200\",\"sort\":\"4\",\"name\":\"\\u83b7\\u53d6\\u7d20\\u6750\\u5206\\u7c7b\",\"model_name\":\"\\/uploadLog\\/getTagLists\",\"icon\":\"\",\"path\":\"\",\"component\":\"\",\"child_list\":101137103,\"copy_safe_id\":0,\"copy_safe_site_id\":1,\"create_time\":\"2021-05-06 18:17:50\",\"update_time\":\"2021-05-06 18:17:50\",\"id\":\"204\"}' , `origin` = '[]' , `sql` = 'INSERT INTO `system_auth_rule` SET `menu_type` = 1 , `open_type` = 0 , `hide` = 0 , `is_manager_use` = 0 , `parent_id` = 200 , `sort` = 4 , `name` = \'获取素材分类\' , `model_name` = \'/uploadLog/getTagLists\' , `icon` = \'\' , `path` = \'\' , `component` = \'\' , `child_list` = \'101137103\' , `create_time` = 1620296270 , `update_time` = 1620296270' , `client_browser` = 'Chrome' , `client_os` = 'Mac' , `client_device` = 'Mac' , `update_time` = 1620296270 , `create_time` = 1620296270 [ RunTime:0.050515s ] |
|||
[2021-05-06T18:17:50+08:00][sql] CONNECT:[ UseTime:0.088029s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T18:17:50+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.052329s ] |
|||
[2021-05-06T18:17:50+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `site_id` = 1 AND `authority` IS NULL LIMIT 1 [ RunTime:0.050801s ] |
|||
[2021-05-06T18:17:50+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_auth_rule` WHERE ( `site_id` = 1 ) AND `system_auth_rule`.`delete_time` IS NULL [ RunTime:0.051014s ] |
|||
[2021-05-06T18:17:50+08:00][sql] SELECT * FROM `system_auth_rule` WHERE ( `site_id` = 1 ) AND `system_auth_rule`.`delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.052789s ] |
|||
[2021-05-06T18:18:13+08:00][sql] CONNECT:[ UseTime:0.062121s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T18:18:13+08:00][sql] SHOW FULL COLUMNS FROM `system_upload_log` [ RunTime:0.042136s ] |
|||
[2021-05-06T18:18:13+08:00][sql] SHOW FULL COLUMNS FROM `system_image_storages` [ RunTime:0.039870s ] |
|||
[2021-05-06T18:18:13+08:00][error] [10500]method not exist:think\db\Query->getStorgaeImagesLists[/Users/wwwroot/ahbmz/api.base.ahbmz.com/vendor/topthink/think-orm/src/db/BaseQuery.php:117] |
|||
[2021-05-06T18:18:39+08:00][sql] CONNECT:[ UseTime:0.081049s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T18:18:39+08:00][sql] SHOW FULL COLUMNS FROM `system_upload_log` [ RunTime:0.066045s ] |
|||
[2021-05-06T18:18:39+08:00][sql] SHOW FULL COLUMNS FROM `system_image_storages` [ RunTime:0.055464s ] |
|||
[2021-05-06T18:18:39+08:00][error] [10500]method not exist:think\db\Query->getStorgaeImagesLists[/Users/wwwroot/ahbmz/api.base.ahbmz.com/vendor/topthink/think-orm/src/db/BaseQuery.php:117] |
|||
[2021-05-06T18:18:46+08:00][sql] CONNECT:[ UseTime:0.071879s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T18:18:46+08:00][sql] SHOW FULL COLUMNS FROM `system_upload_log` [ RunTime:0.047787s ] |
|||
[2021-05-06T18:18:46+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_upload_log` WHERE ( `site_id` = 1 ) AND `system_upload_log`.`delete_time` IS NULL [ RunTime:0.044717s ] |
|||
[2021-05-06T18:18:46+08:00][sql] SELECT * FROM `system_upload_log` WHERE ( `site_id` = 1 ) AND `system_upload_log`.`delete_time` IS NULL ORDER BY `create_time` DESC LIMIT 0,20 [ RunTime:0.065437s ] |
|||
[2021-05-06T18:19:45+08:00][sql] CONNECT:[ UseTime:0.091205s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T18:19:45+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.062447s ] |
|||
[2021-05-06T18:19:45+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `site_id` = 1 AND `name` = '获取用户所有图片' LIMIT 1 [ RunTime:0.048529s ] |
|||
[2021-05-06T18:19:45+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `site_id` = 1 AND `authority` IS NULL LIMIT 1 [ RunTime:0.051691s ] |
|||
[2021-05-06T18:19:45+08:00][sql] SELECT MAX(`child_list`) AS think_max FROM `system_auth_rule` WHERE ( `parent_id` = 192 ) AND `system_auth_rule`.`delete_time` IS NULL [ RunTime:0.049932s ] |
|||
[2021-05-06T18:19:45+08:00][sql] SELECT `child_list` FROM `system_auth_rule` WHERE ( `id` = 192 ) AND `system_auth_rule`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.045874s ] |
|||
[2021-05-06T18:19:45+08:00][sql] INSERT INTO `system_auth_rule` SET `menu_type` = 1 , `open_type` = 0 , `hide` = 0 , `is_manager_use` = 0 , `parent_id` = 192 , `name` = '获取用户所有图片' , `model_name` = '/uploadLog/getSiteLists' , `icon` = '' , `path` = '' , `component` = '' , `sort` = 1 , `child_list` = '101130100' , `create_time` = 1620296385 , `update_time` = 1620296385 [ RunTime:0.046824s ] |
|||
[2021-05-06T18:19:45+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.051025s ] |
|||
[2021-05-06T18:19:45+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.050744s ] |
|||
[2021-05-06T18:19:45+08:00][sql] SHOW FULL COLUMNS FROM `system_action_log` [ RunTime:0.048456s ] |
|||
[2021-05-06T18:19:45+08:00][sql] INSERT INTO `system_action_log` SET `site_id` = 1 , `user_id` = 1 , `username` = 'admin' , `action_ip` = 2130706433 , `request_method` = 'POST' , `request_param` = '{\"menu_type\":\"1\",\"open_type\":\"0\",\"hide\":\"0\",\"isShow\":\"1\",\"is_manager_use\":\"0\",\"isManager\":\"\",\"parent_id\":\"192\",\"name\":\"\\u83b7\\u53d6\\u7528\\u6237\\u6240\\u6709\\u56fe\\u7247\",\"model_name\":\"\\/uploadLog\\/getSiteLists\",\"icon\":\"\",\"path\":\"\",\"component\":\"\",\"sort\":\"1\"}' , `model` = '/api/menu/add' , `url` = 'api.base.ahbmz.com/api/menu/add' , `spend_time` = '1.4736' , `record_id` = '205' , `remark` = 'admin 在 2021-05-06 18:19:45 创建了权限菜单:获取用户所有图片' , `data` = '{\"menu_type\":\"1\",\"open_type\":\"0\",\"hide\":\"0\",\"isShow\":\"1\",\"is_manager_use\":\"0\",\"isManager\":\"\",\"parent_id\":\"192\",\"name\":\"\\u83b7\\u53d6\\u7528\\u6237\\u6240\\u6709\\u56fe\\u7247\",\"model_name\":\"\\/uploadLog\\/getSiteLists\",\"icon\":\"\",\"path\":\"\",\"component\":\"\",\"sort\":\"1\",\"child_list\":\"101130100\",\"copy_safe_id\":0,\"copy_safe_site_id\":1,\"create_time\":\"2021-05-06 18:19:45\",\"update_time\":\"2021-05-06 18:19:45\",\"id\":\"205\"}' , `origin` = '[]' , `sql` = 'INSERT INTO `system_auth_rule` SET `menu_type` = 1 , `open_type` = 0 , `hide` = 0 , `is_manager_use` = 0 , `parent_id` = 192 , `name` = \'获取用户所有图片\' , `model_name` = \'/uploadLog/getSiteLists\' , `icon` = \'\' , `path` = \'\' , `component` = \'\' , `sort` = 1 , `child_list` = \'101130100\' , `create_time` = 1620296385 , `update_time` = 1620296385' , `client_browser` = 'Chrome' , `client_os` = 'Mac' , `client_device` = 'Mac' , `update_time` = 1620296385 , `create_time` = 1620296385 [ RunTime:0.047903s ] |
|||
[2021-05-06T18:19:45+08:00][sql] CONNECT:[ UseTime:0.081204s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T18:19:45+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.054944s ] |
|||
[2021-05-06T18:19:45+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `site_id` = 1 AND `authority` IS NULL LIMIT 1 [ RunTime:0.055028s ] |
|||
[2021-05-06T18:19:45+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_auth_rule` WHERE ( `site_id` = 1 ) AND `system_auth_rule`.`delete_time` IS NULL [ RunTime:0.053429s ] |
|||
[2021-05-06T18:19:45+08:00][sql] SELECT * FROM `system_auth_rule` WHERE ( `site_id` = 1 ) AND `system_auth_rule`.`delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.062428s ] |
|||
[2021-05-06T18:20:48+08:00][sql] CONNECT:[ UseTime:0.071088s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T18:20:48+08:00][sql] SHOW FULL COLUMNS FROM `system_dictionary_type` [ RunTime:0.048054s ] |
|||
[2021-05-06T18:20:48+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_dictionary_type` WHERE ( `site_id` = 1 ) AND `system_dictionary_type`.`delete_time` IS NULL [ RunTime:0.043876s ] |
|||
[2021-05-06T18:20:48+08:00][sql] SELECT * FROM `system_dictionary_type` WHERE ( `site_id` = 1 ) AND `system_dictionary_type`.`delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC LIMIT 0,10 [ RunTime:0.051290s ] |
|||
[2021-05-06T18:20:48+08:00][sql] SELECT `a`.`dict_symbol`,`b`.`dict_name`,`b`.`dict_value` FROM `system_dictionary_type` `a` LEFT JOIN `system_dictionary` `b` ON `a`.`id`=`b`.`dict_type_id` WHERE ( `b`.`delete_time` IS NULL ) AND `a`.`delete_time` IS NULL [ RunTime:0.044169s ] |
|||
[2021-05-06T18:20:48+08:00][sql] CONNECT:[ UseTime:0.085251s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T18:20:48+08:00][sql] SHOW FULL COLUMNS FROM `system_dictionary` [ RunTime:0.050671s ] |
|||
[2021-05-06T18:20:48+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_dictionary` WHERE ( `dict_type_id` = 20 AND `site_id` = 1 ) AND `system_dictionary`.`delete_time` IS NULL [ RunTime:0.051986s ] |
|||
[2021-05-06T18:20:48+08:00][sql] SELECT * FROM `system_dictionary` WHERE ( `dict_type_id` = 20 AND `site_id` = 1 ) AND `system_dictionary`.`delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC LIMIT 0,10 [ RunTime:0.057013s ] |
|||
[2021-05-06T18:20:50+08:00][sql] CONNECT:[ UseTime:0.096942s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T18:20:50+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.068044s ] |
|||
[2021-05-06T18:20:50+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `is_init` = 1 AND `site_id` = 1 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.059053s ] |
|||
[2021-05-06T18:20:50+08:00][sql] SELECT * FROM `system_message` WHERE ( `is_init` = 1 AND `site_id` = 1 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC LIMIT 0,10 [ RunTime:0.062866s ] |
|||
[2021-05-06T18:20:50+08:00][sql] SHOW FULL COLUMNS FROM `system_message_content` [ RunTime:0.085442s ] |
|||
[2021-05-06T18:20:50+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 6 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.081926s ] |
|||
[2021-05-06T18:20:50+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.086040s ] |
|||
[2021-05-06T18:20:50+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.078144s ] |
|||
[2021-05-06T18:20:50+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.073322s ] |
|||
[2021-05-06T18:20:50+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.071042s ] |
|||
[2021-05-06T18:20:50+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.066618s ] |
|||
[2021-05-06T18:20:50+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,26,192,198,200,3,11,189,4,14,199,190,191,197) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.067329s ] |
|||
[2021-05-06T18:20:50+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.074248s ] |
|||
[2021-05-06T18:20:50+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 5 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.071886s ] |
|||
[2021-05-06T18:20:50+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 3006 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.068040s ] |
|||
[2021-05-06T18:20:50+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='3006' and system_auth_group.status='1' ) [ RunTime:0.061593s ] |
|||
[2021-05-06T18:20:50+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.097060s ] |
|||
[2021-05-06T18:20:50+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 3 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.073481s ] |
|||
[2021-05-06T18:20:50+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.067331s ] |
|||
[2021-05-06T18:20:50+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.077604s ] |
|||
[2021-05-06T18:20:50+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 2 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.088848s ] |
|||
[2021-05-06T18:20:50+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.087201s ] |
|||
[2021-05-06T18:20:50+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 1 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.095560s ] |
|||
[2021-05-06T18:20:50+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.094423s ] |
|||
[2021-05-06T18:21:18+08:00][sql] CONNECT:[ UseTime:0.086587s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T18:21:18+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.057558s ] |
|||
[2021-05-06T18:21:18+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `site_id` = 1 AND `authority` IS NULL LIMIT 1 [ RunTime:0.056878s ] |
|||
[2021-05-06T18:21:18+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_auth_rule` WHERE ( `site_id` = 1 ) AND `system_auth_rule`.`delete_time` IS NULL [ RunTime:0.054807s ] |
|||
[2021-05-06T18:21:18+08:00][sql] SELECT * FROM `system_auth_rule` WHERE ( `site_id` = 1 ) AND `system_auth_rule`.`delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.063772s ] |
|||
[2021-05-06T18:22:01+08:00][sql] CONNECT:[ UseTime:0.084866s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T18:22:01+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.062742s ] |
|||
[2021-05-06T18:22:01+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `site_id` = 1 AND `name` = '添加消息' LIMIT 1 [ RunTime:0.058804s ] |
|||
[2021-05-06T18:22:01+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `site_id` = 1 AND `authority` IS NULL LIMIT 1 [ RunTime:0.056910s ] |
|||
[2021-05-06T18:22:01+08:00][sql] SELECT MAX(`child_list`) AS think_max FROM `system_auth_rule` WHERE ( `parent_id` = 198 ) AND `system_auth_rule`.`delete_time` IS NULL [ RunTime:0.051781s ] |
|||
[2021-05-06T18:22:01+08:00][sql] SELECT `child_list` FROM `system_auth_rule` WHERE ( `id` = 198 ) AND `system_auth_rule`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.050456s ] |
|||
[2021-05-06T18:22:01+08:00][sql] INSERT INTO `system_auth_rule` SET `menu_type` = 1 , `open_type` = 0 , `hide` = 0 , `is_manager_use` = 0 , `parent_id` = 198 , `name` = '添加消息' , `model_name` = 'api/message/add' , `icon` = '' , `path` = '' , `component` = '' , `sort` = 1 , `child_list` = '101135100' , `create_time` = 1620296521 , `update_time` = 1620296521 [ RunTime:0.063364s ] |
|||
[2021-05-06T18:22:01+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.069642s ] |
|||
[2021-05-06T18:22:01+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.056115s ] |
|||
[2021-05-06T18:22:01+08:00][sql] SHOW FULL COLUMNS FROM `system_action_log` [ RunTime:0.065387s ] |
|||
[2021-05-06T18:22:01+08:00][sql] INSERT INTO `system_action_log` SET `site_id` = 1 , `user_id` = 1 , `username` = 'admin' , `action_ip` = 2130706433 , `request_method` = 'POST' , `request_param` = '{\"menu_type\":\"1\",\"open_type\":\"0\",\"hide\":\"0\",\"isShow\":\"1\",\"is_manager_use\":\"0\",\"isManager\":\"\",\"parent_id\":\"198\",\"name\":\"\\u6dfb\\u52a0\\u6d88\\u606f\",\"model_name\":\"api\\/message\\/add\",\"icon\":\"\",\"path\":\"\",\"component\":\"\",\"sort\":\"1\"}' , `model` = '/api/menu/add' , `url` = 'api.base.ahbmz.com/api/menu/add' , `spend_time` = '1.5535' , `record_id` = '206' , `remark` = 'admin 在 2021-05-06 18:22:01 创建了权限菜单:添加消息' , `data` = '{\"menu_type\":\"1\",\"open_type\":\"0\",\"hide\":\"0\",\"isShow\":\"1\",\"is_manager_use\":\"0\",\"isManager\":\"\",\"parent_id\":\"198\",\"name\":\"\\u6dfb\\u52a0\\u6d88\\u606f\",\"model_name\":\"api\\/message\\/add\",\"icon\":\"\",\"path\":\"\",\"component\":\"\",\"sort\":\"1\",\"child_list\":\"101135100\",\"copy_safe_id\":0,\"copy_safe_site_id\":1,\"create_time\":\"2021-05-06 18:22:01\",\"update_time\":\"2021-05-06 18:22:01\",\"id\":\"206\"}' , `origin` = '[]' , `sql` = 'INSERT INTO `system_auth_rule` SET `menu_type` = 1 , `open_type` = 0 , `hide` = 0 , `is_manager_use` = 0 , `parent_id` = 198 , `name` = \'添加消息\' , `model_name` = \'api/message/add\' , `icon` = \'\' , `path` = \'\' , `component` = \'\' , `sort` = 1 , `child_list` = \'101135100\' , `create_time` = 1620296521 , `update_time` = 1620296521' , `client_browser` = 'Chrome' , `client_os` = 'Mac' , `client_device` = 'Mac' , `update_time` = 1620296521 , `create_time` = 1620296521 [ RunTime:0.057052s ] |
|||
[2021-05-06T18:22:02+08:00][sql] CONNECT:[ UseTime:0.071137s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T18:22:02+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.049226s ] |
|||
[2021-05-06T18:22:02+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `site_id` = 1 AND `authority` IS NULL LIMIT 1 [ RunTime:0.056061s ] |
|||
[2021-05-06T18:22:02+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_auth_rule` WHERE ( `site_id` = 1 ) AND `system_auth_rule`.`delete_time` IS NULL [ RunTime:0.055084s ] |
|||
[2021-05-06T18:22:02+08:00][sql] SELECT * FROM `system_auth_rule` WHERE ( `site_id` = 1 ) AND `system_auth_rule`.`delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.053784s ] |
|||
[2021-05-06T18:22:18+08:00][sql] CONNECT:[ UseTime:0.085869s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T18:22:18+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.051035s ] |
|||
[2021-05-06T18:22:18+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `site_id` = 1 AND `name` = '修改消息' LIMIT 1 [ RunTime:0.049390s ] |
|||
[2021-05-06T18:22:18+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `site_id` = 1 AND `authority` IS NULL LIMIT 1 [ RunTime:0.049461s ] |
|||
[2021-05-06T18:22:18+08:00][sql] SELECT MAX(`child_list`) AS think_max FROM `system_auth_rule` WHERE ( `parent_id` = 198 ) AND `system_auth_rule`.`delete_time` IS NULL [ RunTime:0.055941s ] |
|||
[2021-05-06T18:22:18+08:00][sql] SELECT `child_list` FROM `system_auth_rule` WHERE ( `id` = 198 ) AND `system_auth_rule`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.050966s ] |
|||
[2021-05-06T18:22:18+08:00][sql] INSERT INTO `system_auth_rule` SET `menu_type` = 1 , `open_type` = 0 , `hide` = 0 , `is_manager_use` = 0 , `parent_id` = 198 , `sort` = 2 , `model_name` = 'api/message/edit' , `name` = '修改消息' , `icon` = '' , `path` = '' , `component` = '' , `child_list` = '101135101' , `create_time` = 1620296538 , `update_time` = 1620296538 [ RunTime:0.062627s ] |
|||
[2021-05-06T18:22:18+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.050873s ] |
|||
[2021-05-06T18:22:18+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.049959s ] |
|||
[2021-05-06T18:22:18+08:00][sql] SHOW FULL COLUMNS FROM `system_action_log` [ RunTime:0.050282s ] |
|||
[2021-05-06T18:22:18+08:00][sql] INSERT INTO `system_action_log` SET `site_id` = 1 , `user_id` = 1 , `username` = 'admin' , `action_ip` = 2130706433 , `request_method` = 'POST' , `request_param` = '{\"menu_type\":\"1\",\"open_type\":\"0\",\"hide\":\"0\",\"isShow\":\"1\",\"is_manager_use\":\"0\",\"isManager\":\"\",\"parent_id\":\"198\",\"sort\":\"2\",\"model_name\":\"api\\/message\\/edit\",\"name\":\"\\u4fee\\u6539\\u6d88\\u606f\",\"icon\":\"\",\"path\":\"\",\"component\":\"\"}' , `model` = '/api/menu/add' , `url` = 'api.base.ahbmz.com/api/menu/add' , `spend_time` = '0.7945' , `record_id` = '207' , `remark` = 'admin 在 2021-05-06 18:22:18 创建了权限菜单:修改消息' , `data` = '{\"menu_type\":\"1\",\"open_type\":\"0\",\"hide\":\"0\",\"isShow\":\"1\",\"is_manager_use\":\"0\",\"isManager\":\"\",\"parent_id\":\"198\",\"sort\":\"2\",\"model_name\":\"api\\/message\\/edit\",\"name\":\"\\u4fee\\u6539\\u6d88\\u606f\",\"icon\":\"\",\"path\":\"\",\"component\":\"\",\"child_list\":101135101,\"copy_safe_id\":0,\"copy_safe_site_id\":1,\"create_time\":\"2021-05-06 18:22:18\",\"update_time\":\"2021-05-06 18:22:18\",\"id\":\"207\"}' , `origin` = '[]' , `sql` = 'INSERT INTO `system_auth_rule` SET `menu_type` = 1 , `open_type` = 0 , `hide` = 0 , `is_manager_use` = 0 , `parent_id` = 198 , `sort` = 2 , `model_name` = \'api/message/edit\' , `name` = \'修改消息\' , `icon` = \'\' , `path` = \'\' , `component` = \'\' , `child_list` = \'101135101\' , `create_time` = 1620296538 , `update_time` = 1620296538' , `client_browser` = 'Chrome' , `client_os` = 'Mac' , `client_device` = 'Mac' , `update_time` = 1620296538 , `create_time` = 1620296538 [ RunTime:0.047616s ] |
|||
[2021-05-06T18:22:19+08:00][sql] CONNECT:[ UseTime:0.072760s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T18:22:19+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.049230s ] |
|||
[2021-05-06T18:22:19+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `site_id` = 1 AND `authority` IS NULL LIMIT 1 [ RunTime:0.159377s ] |
|||
[2021-05-06T18:22:19+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_auth_rule` WHERE ( `site_id` = 1 ) AND `system_auth_rule`.`delete_time` IS NULL [ RunTime:0.049470s ] |
|||
[2021-05-06T18:22:19+08:00][sql] SELECT * FROM `system_auth_rule` WHERE ( `site_id` = 1 ) AND `system_auth_rule`.`delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.058008s ] |
|||
[2021-05-06T18:22:40+08:00][sql] CONNECT:[ UseTime:0.088912s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T18:22:40+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.060241s ] |
|||
[2021-05-06T18:22:40+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `site_id` = 1 AND `name` = '删除消息' LIMIT 1 [ RunTime:0.061154s ] |
|||
[2021-05-06T18:22:40+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `site_id` = 1 AND `authority` IS NULL LIMIT 1 [ RunTime:0.059662s ] |
|||
[2021-05-06T18:22:40+08:00][sql] SELECT MAX(`child_list`) AS think_max FROM `system_auth_rule` WHERE ( `parent_id` = 198 ) AND `system_auth_rule`.`delete_time` IS NULL [ RunTime:0.065248s ] |
|||
[2021-05-06T18:22:40+08:00][sql] SELECT `child_list` FROM `system_auth_rule` WHERE ( `id` = 198 ) AND `system_auth_rule`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.057524s ] |
|||
[2021-05-06T18:22:40+08:00][sql] INSERT INTO `system_auth_rule` SET `menu_type` = 1 , `open_type` = 0 , `hide` = 0 , `is_manager_use` = 0 , `parent_id` = 198 , `sort` = 3 , `name` = '删除消息' , `model_name` = 'api/message/delete' , `icon` = '' , `path` = '' , `component` = '' , `child_list` = '101135102' , `create_time` = 1620296560 , `update_time` = 1620296560 [ RunTime:0.064466s ] |
|||
[2021-05-06T18:22:40+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.065332s ] |
|||
[2021-05-06T18:22:40+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.058931s ] |
|||
[2021-05-06T18:22:40+08:00][sql] SHOW FULL COLUMNS FROM `system_action_log` [ RunTime:0.066804s ] |
|||
[2021-05-06T18:22:40+08:00][sql] INSERT INTO `system_action_log` SET `site_id` = 1 , `user_id` = 1 , `username` = 'admin' , `action_ip` = 2130706433 , `request_method` = 'POST' , `request_param` = '{\"menu_type\":\"1\",\"open_type\":\"0\",\"hide\":\"0\",\"isShow\":\"1\",\"is_manager_use\":\"0\",\"isManager\":\"\",\"parent_id\":\"198\",\"sort\":\"3\",\"name\":\"\\u5220\\u9664\\u6d88\\u606f\",\"model_name\":\"api\\/message\\/delete\",\"icon\":\"\",\"path\":\"\",\"component\":\"\"}' , `model` = '/api/menu/add' , `url` = 'api.base.ahbmz.com/api/menu/add' , `spend_time` = '1.297' , `record_id` = '208' , `remark` = 'admin 在 2021-05-06 18:22:40 创建了权限菜单:删除消息' , `data` = '{\"menu_type\":\"1\",\"open_type\":\"0\",\"hide\":\"0\",\"isShow\":\"1\",\"is_manager_use\":\"0\",\"isManager\":\"\",\"parent_id\":\"198\",\"sort\":\"3\",\"name\":\"\\u5220\\u9664\\u6d88\\u606f\",\"model_name\":\"api\\/message\\/delete\",\"icon\":\"\",\"path\":\"\",\"component\":\"\",\"child_list\":101135102,\"copy_safe_id\":0,\"copy_safe_site_id\":1,\"create_time\":\"2021-05-06 18:22:40\",\"update_time\":\"2021-05-06 18:22:40\",\"id\":\"208\"}' , `origin` = '[]' , `sql` = 'INSERT INTO `system_auth_rule` SET `menu_type` = 1 , `open_type` = 0 , `hide` = 0 , `is_manager_use` = 0 , `parent_id` = 198 , `sort` = 3 , `name` = \'删除消息\' , `model_name` = \'api/message/delete\' , `icon` = \'\' , `path` = \'\' , `component` = \'\' , `child_list` = \'101135102\' , `create_time` = 1620296560 , `update_time` = 1620296560' , `client_browser` = 'Chrome' , `client_os` = 'Mac' , `client_device` = 'Mac' , `update_time` = 1620296560 , `create_time` = 1620296560 [ RunTime:0.063284s ] |
|||
[2021-05-06T18:22:40+08:00][sql] CONNECT:[ UseTime:0.079194s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T18:22:40+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.052503s ] |
|||
[2021-05-06T18:22:40+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `site_id` = 1 AND `authority` IS NULL LIMIT 1 [ RunTime:0.048102s ] |
|||
[2021-05-06T18:22:40+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_auth_rule` WHERE ( `site_id` = 1 ) AND `system_auth_rule`.`delete_time` IS NULL [ RunTime:0.058556s ] |
|||
[2021-05-06T18:22:40+08:00][sql] SELECT * FROM `system_auth_rule` WHERE ( `site_id` = 1 ) AND `system_auth_rule`.`delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.061219s ] |
|||
[2021-05-06T18:24:27+08:00][sql] CONNECT:[ UseTime:0.095408s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T18:24:27+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.060391s ] |
|||
[2021-05-06T18:24:27+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `site_id` = 1 AND `name` = '获取最新消息' LIMIT 1 [ RunTime:0.067673s ] |
|||
[2021-05-06T18:24:27+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `site_id` = 1 AND `authority` IS NULL LIMIT 1 [ RunTime:0.114110s ] |
|||
[2021-05-06T18:24:27+08:00][sql] SELECT MAX(`child_list`) AS think_max FROM `system_auth_rule` WHERE ( `parent_id` = 15 ) AND `system_auth_rule`.`delete_time` IS NULL [ RunTime:0.098015s ] |
|||
[2021-05-06T18:24:27+08:00][sql] SELECT `child_list` FROM `system_auth_rule` WHERE ( `id` = 15 ) AND `system_auth_rule`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.103839s ] |
|||
[2021-05-06T18:24:27+08:00][sql] INSERT INTO `system_auth_rule` SET `menu_type` = 1 , `open_type` = 0 , `hide` = 0 , `is_manager_use` = 0 , `parent_id` = 15 , `sort` = 1 , `name` = '获取最新消息' , `model_name` = 'api/manager/getMessage' , `icon` = '' , `path` = '' , `component` = '' , `child_list` = '101103109' , `create_time` = 1620296667 , `update_time` = 1620296667 [ RunTime:0.067532s ] |
|||
[2021-05-06T18:24:27+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.208820s ] |
|||
[2021-05-06T18:24:27+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.072897s ] |
|||
[2021-05-06T18:24:27+08:00][sql] SHOW FULL COLUMNS FROM `system_action_log` [ RunTime:0.100393s ] |
|||
[2021-05-06T18:24:27+08:00][sql] INSERT INTO `system_action_log` SET `site_id` = 1 , `user_id` = 1 , `username` = 'admin' , `action_ip` = 2130706433 , `request_method` = 'POST' , `request_param` = '{\"menu_type\":\"1\",\"open_type\":\"0\",\"hide\":\"0\",\"isShow\":\"1\",\"is_manager_use\":\"0\",\"isManager\":\"\",\"parent_id\":\"15\",\"sort\":\"1\",\"name\":\"\\u83b7\\u53d6\\u6700\\u65b0\\u6d88\\u606f\",\"model_name\":\"api\\/manager\\/getMessage\",\"icon\":\"\",\"path\":\"\",\"component\":\"\"}' , `model` = '/api/menu/add' , `url` = 'api.base.ahbmz.com/api/menu/add' , `spend_time` = '1.4945' , `record_id` = '209' , `remark` = 'admin 在 2021-05-06 18:24:27 创建了权限菜单:获取最新消息' , `data` = '{\"menu_type\":\"1\",\"open_type\":\"0\",\"hide\":\"0\",\"isShow\":\"1\",\"is_manager_use\":\"0\",\"isManager\":\"\",\"parent_id\":\"15\",\"sort\":\"1\",\"name\":\"\\u83b7\\u53d6\\u6700\\u65b0\\u6d88\\u606f\",\"model_name\":\"api\\/manager\\/getMessage\",\"icon\":\"\",\"path\":\"\",\"component\":\"\",\"child_list\":101103109,\"copy_safe_id\":0,\"copy_safe_site_id\":1,\"create_time\":\"2021-05-06 18:24:27\",\"update_time\":\"2021-05-06 18:24:27\",\"id\":\"209\"}' , `origin` = '[]' , `sql` = 'INSERT INTO `system_auth_rule` SET `menu_type` = 1 , `open_type` = 0 , `hide` = 0 , `is_manager_use` = 0 , `parent_id` = 15 , `sort` = 1 , `name` = \'获取最新消息\' , `model_name` = \'api/manager/getMessage\' , `icon` = \'\' , `path` = \'\' , `component` = \'\' , `child_list` = \'101103109\' , `create_time` = 1620296667 , `update_time` = 1620296667' , `client_browser` = 'Chrome' , `client_os` = 'Mac' , `client_device` = 'Mac' , `update_time` = 1620296667 , `create_time` = 1620296667 [ RunTime:0.068914s ] |
|||
[2021-05-06T18:24:28+08:00][sql] CONNECT:[ UseTime:0.168479s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T18:24:28+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.323810s ] |
|||
[2021-05-06T18:24:28+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `site_id` = 1 AND `authority` IS NULL LIMIT 1 [ RunTime:0.101167s ] |
|||
[2021-05-06T18:24:28+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_auth_rule` WHERE ( `site_id` = 1 ) AND `system_auth_rule`.`delete_time` IS NULL [ RunTime:0.063059s ] |
|||
[2021-05-06T18:24:28+08:00][sql] SELECT * FROM `system_auth_rule` WHERE ( `site_id` = 1 ) AND `system_auth_rule`.`delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.100997s ] |
|||
[2021-05-06T18:24:55+08:00][sql] CONNECT:[ UseTime:0.078717s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T18:24:55+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.051014s ] |
|||
[2021-05-06T18:24:55+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `site_id` = 1 AND `name` = '标记信息状态' LIMIT 1 [ RunTime:0.054318s ] |
|||
[2021-05-06T18:24:55+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `site_id` = 1 AND `authority` IS NULL LIMIT 1 [ RunTime:0.054843s ] |
|||
[2021-05-06T18:24:55+08:00][sql] SELECT MAX(`child_list`) AS think_max FROM `system_auth_rule` WHERE ( `parent_id` = 15 ) AND `system_auth_rule`.`delete_time` IS NULL [ RunTime:0.053432s ] |
|||
[2021-05-06T18:24:55+08:00][sql] SELECT `child_list` FROM `system_auth_rule` WHERE ( `id` = 15 ) AND `system_auth_rule`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.067834s ] |
|||
[2021-05-06T18:24:55+08:00][sql] INSERT INTO `system_auth_rule` SET `menu_type` = 1 , `open_type` = 0 , `hide` = 0 , `is_manager_use` = 0 , `parent_id` = 15 , `sort` = 2 , `model_name` = 'api/manager/messageStatus' , `icon` = '' , `path` = '' , `component` = '' , `name` = '标记信息状态' , `child_list` = '101103110' , `create_time` = 1620296695 , `update_time` = 1620296695 [ RunTime:0.075153s ] |
|||
[2021-05-06T18:24:55+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.051108s ] |
|||
[2021-05-06T18:24:55+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.056098s ] |
|||
[2021-05-06T18:24:55+08:00][sql] SHOW FULL COLUMNS FROM `system_action_log` [ RunTime:0.084016s ] |
|||
[2021-05-06T18:24:55+08:00][sql] INSERT INTO `system_action_log` SET `site_id` = 1 , `user_id` = 1 , `username` = 'admin' , `action_ip` = 2130706433 , `request_method` = 'POST' , `request_param` = '{\"menu_type\":\"1\",\"open_type\":\"0\",\"hide\":\"0\",\"isShow\":\"1\",\"is_manager_use\":\"0\",\"isManager\":\"\",\"parent_id\":\"15\",\"sort\":\"2\",\"model_name\":\"api\\/manager\\/messageStatus\",\"icon\":\"\",\"path\":\"\",\"component\":\"\",\"name\":\"\\u6807\\u8bb0\\u4fe1\\u606f\\u72b6\\u6001\"}' , `model` = '/api/menu/add' , `url` = 'api.base.ahbmz.com/api/menu/add' , `spend_time` = '1.448' , `record_id` = '210' , `remark` = 'admin 在 2021-05-06 18:24:55 创建了权限菜单:标记信息状态' , `data` = '{\"menu_type\":\"1\",\"open_type\":\"0\",\"hide\":\"0\",\"isShow\":\"1\",\"is_manager_use\":\"0\",\"isManager\":\"\",\"parent_id\":\"15\",\"sort\":\"2\",\"model_name\":\"api\\/manager\\/messageStatus\",\"icon\":\"\",\"path\":\"\",\"component\":\"\",\"name\":\"\\u6807\\u8bb0\\u4fe1\\u606f\\u72b6\\u6001\",\"child_list\":101103110,\"copy_safe_id\":0,\"copy_safe_site_id\":1,\"create_time\":\"2021-05-06 18:24:55\",\"update_time\":\"2021-05-06 18:24:55\",\"id\":\"210\"}' , `origin` = '[]' , `sql` = 'INSERT INTO `system_auth_rule` SET `menu_type` = 1 , `open_type` = 0 , `hide` = 0 , `is_manager_use` = 0 , `parent_id` = 15 , `sort` = 2 , `model_name` = \'api/manager/messageStatus\' , `icon` = \'\' , `path` = \'\' , `component` = \'\' , `name` = \'标记信息状态\' , `child_list` = \'101103110\' , `create_time` = 1620296695 , `update_time` = 1620296695' , `client_browser` = 'Chrome' , `client_os` = 'Mac' , `client_device` = 'Mac' , `update_time` = 1620296695 , `create_time` = 1620296695 [ RunTime:0.071026s ] |
|||
[2021-05-06T18:24:56+08:00][sql] CONNECT:[ UseTime:0.077435s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T18:24:56+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.060598s ] |
|||
[2021-05-06T18:24:56+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `site_id` = 1 AND `authority` IS NULL LIMIT 1 [ RunTime:0.047351s ] |
|||
[2021-05-06T18:24:56+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_auth_rule` WHERE ( `site_id` = 1 ) AND `system_auth_rule`.`delete_time` IS NULL [ RunTime:0.050259s ] |
|||
[2021-05-06T18:24:56+08:00][sql] SELECT * FROM `system_auth_rule` WHERE ( `site_id` = 1 ) AND `system_auth_rule`.`delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.067198s ] |
|||
[2021-05-06T18:25:19+08:00][sql] CONNECT:[ UseTime:0.096807s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T18:25:19+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.058600s ] |
|||
[2021-05-06T18:25:19+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `site_id` = 1 AND `name` = '删除个人消息' LIMIT 1 [ RunTime:0.060293s ] |
|||
[2021-05-06T18:25:19+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `site_id` = 1 AND `authority` IS NULL LIMIT 1 [ RunTime:0.054035s ] |
|||
[2021-05-06T18:25:19+08:00][sql] SELECT MAX(`child_list`) AS think_max FROM `system_auth_rule` WHERE ( `parent_id` = 15 ) AND `system_auth_rule`.`delete_time` IS NULL [ RunTime:0.060156s ] |
|||
[2021-05-06T18:25:19+08:00][sql] SELECT `child_list` FROM `system_auth_rule` WHERE ( `id` = 15 ) AND `system_auth_rule`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.058237s ] |
|||
[2021-05-06T18:25:19+08:00][sql] INSERT INTO `system_auth_rule` SET `menu_type` = 0 , `open_type` = 0 , `hide` = 0 , `is_manager_use` = 0 , `parent_id` = 15 , `sort` = 2 , `name` = '删除个人消息' , `model_name` = 'messageDelete' , `child_list` = '101103111' , `create_time` = 1620296719 , `update_time` = 1620296719 [ RunTime:0.055536s ] |
|||
[2021-05-06T18:25:19+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.055043s ] |
|||
[2021-05-06T18:25:19+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.055039s ] |
|||
[2021-05-06T18:25:19+08:00][sql] SHOW FULL COLUMNS FROM `system_action_log` [ RunTime:0.059231s ] |
|||
[2021-05-06T18:25:19+08:00][sql] INSERT INTO `system_action_log` SET `site_id` = 1 , `user_id` = 1 , `username` = 'admin' , `action_ip` = 2130706433 , `request_method` = 'POST' , `request_param` = '{\"menu_type\":\"0\",\"open_type\":\"0\",\"hide\":\"0\",\"isShow\":\"1\",\"is_manager_use\":\"0\",\"isManager\":\"\",\"parent_id\":\"15\",\"sort\":\"2\",\"name\":\"\\u5220\\u9664\\u4e2a\\u4eba\\u6d88\\u606f\",\"model_name\":\"messageDelete\"}' , `model` = '/api/menu/add' , `url` = 'api.base.ahbmz.com/api/menu/add' , `spend_time` = '1.6625' , `record_id` = '211' , `remark` = 'admin 在 2021-05-06 18:25:19 创建了权限菜单:删除个人消息' , `data` = '{\"menu_type\":\"0\",\"open_type\":\"0\",\"hide\":\"0\",\"isShow\":\"1\",\"is_manager_use\":\"0\",\"isManager\":\"\",\"parent_id\":\"15\",\"sort\":\"2\",\"name\":\"\\u5220\\u9664\\u4e2a\\u4eba\\u6d88\\u606f\",\"model_name\":\"messageDelete\",\"child_list\":101103111,\"copy_safe_id\":0,\"copy_safe_site_id\":1,\"create_time\":\"2021-05-06 18:25:19\",\"update_time\":\"2021-05-06 18:25:19\",\"id\":\"211\"}' , `origin` = '[]' , `sql` = 'INSERT INTO `system_auth_rule` SET `menu_type` = 0 , `open_type` = 0 , `hide` = 0 , `is_manager_use` = 0 , `parent_id` = 15 , `sort` = 2 , `name` = \'删除个人消息\' , `model_name` = \'messageDelete\' , `child_list` = \'101103111\' , `create_time` = 1620296719 , `update_time` = 1620296719' , `client_browser` = 'Chrome' , `client_os` = 'Mac' , `client_device` = 'Mac' , `update_time` = 1620296719 , `create_time` = 1620296719 [ RunTime:0.049580s ] |
|||
[2021-05-06T18:25:20+08:00][sql] CONNECT:[ UseTime:0.068567s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T18:25:20+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.051096s ] |
|||
[2021-05-06T18:25:20+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `site_id` = 1 AND `authority` IS NULL LIMIT 1 [ RunTime:0.055904s ] |
|||
[2021-05-06T18:25:20+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_auth_rule` WHERE ( `site_id` = 1 ) AND `system_auth_rule`.`delete_time` IS NULL [ RunTime:0.049178s ] |
|||
[2021-05-06T18:25:20+08:00][sql] SELECT * FROM `system_auth_rule` WHERE ( `site_id` = 1 ) AND `system_auth_rule`.`delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.051244s ] |
|||
[2021-05-06T18:25:46+08:00][sql] CONNECT:[ UseTime:0.102973s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T18:25:46+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.069822s ] |
|||
[2021-05-06T18:25:46+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `site_id` = 1 AND `id` <> 211 AND `name` <> ' ' AND `name` = '删除个人消息' LIMIT 1 [ RunTime:0.065251s ] |
|||
[2021-05-06T18:25:46+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `site_id` = 1 AND `id` <> 211 AND `authority` <> ' ' AND `authority` = '' LIMIT 1 [ RunTime:0.062337s ] |
|||
[2021-05-06T18:25:46+08:00][sql] SELECT * FROM `system_auth_rule` WHERE ( `site_id` = 1 AND `id` = 211 ) AND `system_auth_rule`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.067375s ] |
|||
[2021-05-06T18:25:46+08:00][sql] SELECT MAX(`child_list`) AS think_max FROM `system_auth_rule` WHERE ( `parent_id` = 15 ) AND `system_auth_rule`.`delete_time` IS NULL [ RunTime:0.060865s ] |
|||
[2021-05-06T18:25:46+08:00][sql] SELECT `child_list` FROM `system_auth_rule` WHERE ( `id` = 15 ) AND `system_auth_rule`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.077028s ] |
|||
[2021-05-06T18:25:46+08:00][sql] UPDATE `system_auth_rule` SET `model_name` = 'api/manager/messageDelete' , `iframe` = 0 , `hide` = 0 , `sort` = 1 , `menu_type` = 1 , `open_type` = 0 , `is_dev` = 0 , `child_list` = '101103112' , `is_manager_use` = 0 , `update_time` = 1620296746 WHERE ( `id` = 211 ) AND `system_auth_rule`.`delete_time` IS NULL [ RunTime:0.061305s ] |
|||
[2021-05-06T18:25:46+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.066309s ] |
|||
[2021-05-06T18:25:46+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.063330s ] |
|||
[2021-05-06T18:25:46+08:00][sql] SHOW FULL COLUMNS FROM `system_action_log` [ RunTime:0.069896s ] |
|||
[2021-05-06T18:25:46+08:00][sql] INSERT INTO `system_action_log` SET `site_id` = 1 , `user_id` = 1 , `username` = 'admin' , `action_ip` = 2130706433 , `request_method` = 'POST' , `request_param` = '{\"menu_type\":\"1\",\"open_type\":\"0\",\"hide\":\"0\",\"isShow\":\"1\",\"is_manager_use\":\"0\",\"isManager\":\"\",\"parent_id\":\"15\",\"id\":\"211\",\"site_id\":\"1\",\"name\":\"\\u5220\\u9664\\u4e2a\\u4eba\\u6d88\\u606f\",\"model_name\":\"api\\/manager\\/messageDelete\",\"path\":\"\",\"component\":\"\",\"authority\":\"\",\"icon\":\"\",\"color\":\"\",\"target\":\"_self\",\"iframe\":\"0\",\"type\":\"1\",\"sort\":\"1\",\"is_dev\":\"0\",\"status\":\"1\",\"condition\":\"\",\"remarks\":\"\",\"child_list\":\"101103111\",\"update_time\":\"2021-05-06 18:25:19\",\"create_time\":\"2021-05-06 18:25:19\"}' , `model` = '/api/menu/edit' , `url` = 'api.base.ahbmz.com/api/menu/edit' , `spend_time` = '1.2888' , `record_id` = '211' , `remark` = 'admin在2021-05-06 18:25:46 修改了权限菜单删除个人消息的数据' , `data` = '{\"name\":\"\\u5220\\u9664\\u4e2a\\u4eba\\u6d88\\u606f\",\"parent_id\":\"15\",\"model_name\":\"api\\/manager\\/messageDelete\",\"path\":\"\",\"component\":\"\",\"authority\":\"\",\"icon\":\"\",\"color\":\"\",\"target\":\"_self\",\"iframe\":\"0\",\"hide\":\"0\",\"type\":\"1\",\"sort\":\"1\",\"menu_type\":\"1\",\"open_type\":\"0\",\"is_dev\":\"0\",\"status\":\"1\",\"condition\":\"\",\"remarks\":\"\",\"child_list\":101103112,\"is_manager_use\":\"0\",\"isShow\":\"1\",\"isManager\":\"\",\"copy_safe_id\":211,\"copy_safe_site_id\":1,\"update_time\":\"2021-05-06 18:25:46\"}' , `origin` = '{\"id\":211,\"site_id\":1,\"name\":\"\\u5220\\u9664\\u4e2a\\u4eba\\u6d88\\u606f\",\"parent_id\":15,\"model_name\":\"messageDelete\",\"path\":\"\",\"component\":\"\",\"authority\":\"\",\"icon\":\"\",\"color\":\"\",\"target\":\"_self\",\"iframe\":0,\"hide\":0,\"type\":1,\"sort\":2,\"menu_type\":0,\"open_type\":0,\"is_dev\":0,\"status\":1,\"condition\":\"\",\"remarks\":\"\",\"child_list\":\"101103111\",\"delete_time\":null,\"update_time\":1620296719,\"create_time\":1620296719,\"is_manager_use\":0}' , `sql` = 'UPDATE `system_auth_rule` SET `model_name` = \'api/manager/messageDelete\' , `iframe` = 0 , `hide` = 0 , `sort` = 1 , `menu_type` = 1 , `open_type` = 0 , `is_dev` = 0 , `child_list` = \'101103112\' , `is_manager_use` = 0 , `update_time` = 1620296746 WHERE ( `id` = 211 ) AND `system_auth_rule`.`delete_time` IS NULL' , `client_browser` = 'Chrome' , `client_os` = 'Mac' , `client_device` = 'Mac' , `update_time` = 1620296746 , `create_time` = 1620296746 [ RunTime:0.069234s ] |
|||
[2021-05-06T18:25:46+08:00][sql] CONNECT:[ UseTime:0.081901s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T18:25:46+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.057973s ] |
|||
[2021-05-06T18:25:46+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `site_id` = 1 AND `authority` IS NULL LIMIT 1 [ RunTime:0.057569s ] |
|||
[2021-05-06T18:25:46+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_auth_rule` WHERE ( `site_id` = 1 ) AND `system_auth_rule`.`delete_time` IS NULL [ RunTime:0.057941s ] |
|||
[2021-05-06T18:25:46+08:00][sql] SELECT * FROM `system_auth_rule` WHERE ( `site_id` = 1 ) AND `system_auth_rule`.`delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.064079s ] |
|||
[2021-05-06T18:26:06+08:00][sql] CONNECT:[ UseTime:0.106567s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T18:26:06+08:00][sql] SHOW FULL COLUMNS FROM `system_upload_log` [ RunTime:0.061444s ] |
|||
[2021-05-06T18:26:06+08:00][sql] CONNECT:[ UseTime:0.095140s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T18:26:06+08:00][sql] SHOW FULL COLUMNS FROM `system_image_storages` [ RunTime:0.053101s ] |
|||
[2021-05-06T18:26:06+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_image_storages` WHERE ( `site_id` = 1 ) AND `system_image_storages`.`delete_time` IS NULL [ RunTime:0.045372s ] |
|||
[2021-05-06T18:26:06+08:00][sql] SELECT * FROM `system_image_storages` WHERE ( `site_id` = 1 ) AND `system_image_storages`.`delete_time` IS NULL ORDER BY `create_time` DESC LIMIT 0,10 [ RunTime:0.055100s ] |
|||
[2021-05-06T18:26:06+08:00][sql] CONNECT:[ UseTime:0.100428s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-06T18:26:06+08:00][sql] SHOW FULL COLUMNS FROM `system_upload_log` [ RunTime:0.071556s ] |
|||
File diff suppressed because it is too large
File diff suppressed because one or more lines are too long
@ -1,24 +1,330 @@ |
|||
[2021-05-17T20:17:27+08:00][sql] CONNECT:[ UseTime:0.100935s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-17T20:17:27+08:00][sql] SHOW FULL COLUMNS FROM `system_upload_log` [ RunTime:0.061447s ] |
|||
[2021-05-17T20:17:27+08:00][sql] INSERT INTO `system_upload_log` SET `name` = 'adbd96537f2524fbe34c66796f391cb9.jpg' , `host` = 'localhost:8080' , `y` = '2021' , `m` = '05' , `d` = '17' , `url` = 'http://static.ahbmz.com/localhost:8080/2021/05/17/adbd96537f2524fbe34c66796f391cb9.jpg' , `type` = 'jpg' , `size` = 14139 , `date` = '0517' , `create_time` = 1621253847 , `update_time` = 1621253847 [ RunTime:0.061211s ] |
|||
[2021-05-17T20:17:27+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.062621s ] |
|||
[2021-05-17T20:17:27+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.065263s ] |
|||
[2021-05-17T20:17:27+08:00][error] [8]未定义数组索引: HTTP_USER_AGENT[/Users/wwwroot/ahbmz/api.base.ahbmz.com/app/common.php:222] |
|||
[2021-05-17T20:19:01+08:00][sql] CONNECT:[ UseTime:0.083379s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-17T20:19:01+08:00][sql] SHOW FULL COLUMNS FROM `system_upload_log` [ RunTime:0.056997s ] |
|||
[2021-05-17T20:19:01+08:00][sql] INSERT INTO `system_upload_log` SET `name` = 'b237b79b6dee3ff157229d15a7523a44.jpg' , `host` = 'localhost:8080' , `y` = '2021' , `m` = '05' , `d` = '17' , `url` = 'http://static.ahbmz.com/localhost:8080/2021/05/17/b237b79b6dee3ff157229d15a7523a44.jpg' , `type` = 'jpg' , `size` = 14139 , `date` = '0517' , `create_time` = 1621253941 , `update_time` = 1621253941 [ RunTime:0.057044s ] |
|||
[2021-05-17T20:19:01+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.060060s ] |
|||
[2021-05-17T20:19:01+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.058794s ] |
|||
[2021-05-17T20:19:01+08:00][error] [8]未定义数组索引: HTTP_USER_AGENT[/Users/wwwroot/ahbmz/api.base.ahbmz.com/app/common.php:222] |
|||
[2021-05-17T20:47:33+08:00][sql] CONNECT:[ UseTime:0.077642s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-17T20:47:33+08:00][sql] SHOW FULL COLUMNS FROM `system_upload_log` [ RunTime:0.054186s ] |
|||
[2021-05-17T20:47:33+08:00][sql] INSERT INTO `system_upload_log` SET `name` = '2eca33d6d4f5fdb5cbbec6e1c0d2447c.jpg' , `host` = 'localhost:8080' , `y` = '2021' , `m` = '05' , `d` = '17' , `url` = 'http://static.ahbmz.com/localhost:8080/2021/05/17/2eca33d6d4f5fdb5cbbec6e1c0d2447c.jpg' , `type` = 'jpg' , `size` = 14139 , `date` = '0517' , `create_time` = 1621255652 , `update_time` = 1621255652 [ RunTime:0.057203s ] |
|||
[2021-05-17T20:47:33+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.051421s ] |
|||
[2021-05-17T20:47:33+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.052532s ] |
|||
[2021-05-17T20:47:33+08:00][error] [8]未定义数组索引: HTTP_USER_AGENT[/Users/wwwroot/ahbmz/api.base.ahbmz.com/app/common.php:222] |
|||
[2021-05-17T20:49:00+08:00][sql] CONNECT:[ UseTime:0.091062s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-17T20:49:00+08:00][sql] SHOW FULL COLUMNS FROM `system_upload_log` [ RunTime:0.060005s ] |
|||
[2021-05-17T20:49:00+08:00][sql] INSERT INTO `system_upload_log` SET `name` = '2dcd38745c7a98e07cf71783a2d850fd.jpg' , `host` = 'localhost:8080' , `y` = '2021' , `m` = '05' , `d` = '17' , `url` = 'http://static.ahbmz.com/localhost:8080/2021/05/17/2dcd38745c7a98e07cf71783a2d850fd.jpg' , `type` = 'jpg' , `size` = 14139 , `date` = '0517' , `create_time` = 1621255739 , `update_time` = 1621255739 [ RunTime:0.407102s ] |
|||
[2021-05-17T20:49:00+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.058880s ] |
|||
[2021-05-17T20:49:00+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.065714s ] |
|||
[2021-05-17T20:49:00+08:00][error] [8]未定义数组索引: HTTP_USER_AGENT[/Users/wwwroot/ahbmz/api.base.ahbmz.com/app/common.php:222] |
|||
[2021-05-17T23:32:50+08:00][sql] CONNECT:[ UseTime:0.089419s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-17T23:32:50+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.063719s ] |
|||
[2021-05-17T23:32:50+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.061264s ] |
|||
[2021-05-17T23:32:50+08:00][sql] SELECT * FROM `system_message` WHERE `receve_id` = 1 AND `type` = 1 ORDER BY `create_time` DESC LIMIT 1 [ RunTime:0.060807s ] |
|||
[2021-05-17T23:32:50+08:00][sql] SHOW FULL COLUMNS FROM `system_message_content` [ RunTime:0.057907s ] |
|||
[2021-05-17T23:32:50+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 7 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.063279s ] |
|||
[2021-05-17T23:32:50+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.060457s ] |
|||
[2021-05-17T23:32:50+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.064482s ] |
|||
[2021-05-17T23:32:50+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.062543s ] |
|||
[2021-05-17T23:32:50+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.062634s ] |
|||
[2021-05-17T23:32:50+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,209,210,211,26,192,205,198,206,207,208,200,201,202,203,204,3,11,189,212,216,217,218,219,220,213,214,215,4,14,199,190,191,197) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.063369s ] |
|||
[2021-05-17T23:32:50+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.059810s ] |
|||
[2021-05-17T23:32:50+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.062350s ] |
|||
[2021-05-17T23:32:50+08:00][sql] SELECT * FROM `system_message` WHERE ( `site_id` = 1 AND `type` = 1 AND `create_time` > 1620379101 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` ASC [ RunTime:0.060770s ] |
|||
[2021-05-17T23:32:50+08:00][sql] CONNECT:[ UseTime:0.079646s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-17T23:32:50+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.056395s ] |
|||
[2021-05-17T23:32:50+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.054555s ] |
|||
[2021-05-17T23:32:50+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.052483s ] |
|||
[2021-05-17T23:32:50+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.057442s ] |
|||
[2021-05-17T23:32:50+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.053466s ] |
|||
[2021-05-17T23:32:50+08:00][sql] SHOW FULL COLUMNS FROM `system_message_content` [ RunTime:0.059471s ] |
|||
[2021-05-17T23:32:50+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 7 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.054144s ] |
|||
[2021-05-17T23:32:50+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.052371s ] |
|||
[2021-05-17T23:32:50+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.053604s ] |
|||
[2021-05-17T23:32:50+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.051902s ] |
|||
[2021-05-17T23:32:50+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.056349s ] |
|||
[2021-05-17T23:32:50+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,209,210,211,26,192,205,198,206,207,208,200,201,202,203,204,3,11,189,212,216,217,218,219,220,213,214,215,4,14,199,190,191,197) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.055597s ] |
|||
[2021-05-17T23:32:50+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.053254s ] |
|||
[2021-05-17T23:32:50+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.059150s ] |
|||
[2021-05-17T23:32:50+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.053788s ] |
|||
[2021-05-17T23:33:50+08:00][sql] CONNECT:[ UseTime:0.078195s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-17T23:33:50+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.052560s ] |
|||
[2021-05-17T23:33:50+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.054316s ] |
|||
[2021-05-17T23:33:50+08:00][sql] SELECT * FROM `system_message` WHERE `receve_id` = 1 AND `type` = 1 ORDER BY `create_time` DESC LIMIT 1 [ RunTime:0.052083s ] |
|||
[2021-05-17T23:33:50+08:00][sql] SHOW FULL COLUMNS FROM `system_message_content` [ RunTime:0.050652s ] |
|||
[2021-05-17T23:33:50+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 7 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.053992s ] |
|||
[2021-05-17T23:33:50+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.050386s ] |
|||
[2021-05-17T23:33:50+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.053687s ] |
|||
[2021-05-17T23:33:50+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.049816s ] |
|||
[2021-05-17T23:33:50+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.052016s ] |
|||
[2021-05-17T23:33:50+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,209,210,211,26,192,205,198,206,207,208,200,201,202,203,204,3,11,189,212,216,217,218,219,220,213,214,215,4,14,199,190,191,197) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.059279s ] |
|||
[2021-05-17T23:33:50+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.049775s ] |
|||
[2021-05-17T23:33:50+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.050312s ] |
|||
[2021-05-17T23:33:50+08:00][sql] SELECT * FROM `system_message` WHERE ( `site_id` = 1 AND `type` = 1 AND `create_time` > 1620379101 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` ASC [ RunTime:0.050359s ] |
|||
[2021-05-17T23:33:51+08:00][sql] CONNECT:[ UseTime:0.099920s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-17T23:33:51+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.065889s ] |
|||
[2021-05-17T23:33:51+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.066950s ] |
|||
[2021-05-17T23:33:51+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.063203s ] |
|||
[2021-05-17T23:33:51+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.064939s ] |
|||
[2021-05-17T23:33:51+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.063159s ] |
|||
[2021-05-17T23:33:51+08:00][sql] SHOW FULL COLUMNS FROM `system_message_content` [ RunTime:0.066803s ] |
|||
[2021-05-17T23:33:51+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 7 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.063342s ] |
|||
[2021-05-17T23:33:51+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.069573s ] |
|||
[2021-05-17T23:33:51+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.065765s ] |
|||
[2021-05-17T23:33:51+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.066085s ] |
|||
[2021-05-17T23:33:51+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.067101s ] |
|||
[2021-05-17T23:33:51+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,209,210,211,26,192,205,198,206,207,208,200,201,202,203,204,3,11,189,212,216,217,218,219,220,213,214,215,4,14,199,190,191,197) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.066266s ] |
|||
[2021-05-17T23:33:51+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.066939s ] |
|||
[2021-05-17T23:33:51+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.064009s ] |
|||
[2021-05-17T23:33:51+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.066954s ] |
|||
[2021-05-17T23:34:50+08:00][sql] CONNECT:[ UseTime:0.070890s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-17T23:34:50+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.052544s ] |
|||
[2021-05-17T23:34:50+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.055649s ] |
|||
[2021-05-17T23:34:50+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.044974s ] |
|||
[2021-05-17T23:34:50+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.049257s ] |
|||
[2021-05-17T23:34:50+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.050874s ] |
|||
[2021-05-17T23:34:50+08:00][sql] SHOW FULL COLUMNS FROM `system_message_content` [ RunTime:0.046240s ] |
|||
[2021-05-17T23:34:50+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 7 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.045178s ] |
|||
[2021-05-17T23:34:50+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.048926s ] |
|||
[2021-05-17T23:34:50+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.044693s ] |
|||
[2021-05-17T23:34:50+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.049015s ] |
|||
[2021-05-17T23:34:50+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.045216s ] |
|||
[2021-05-17T23:34:50+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,209,210,211,26,192,205,198,206,207,208,200,201,202,203,204,3,11,189,212,216,217,218,219,220,213,214,215,4,14,199,190,191,197) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.046442s ] |
|||
[2021-05-17T23:34:50+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.047378s ] |
|||
[2021-05-17T23:34:50+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.044865s ] |
|||
[2021-05-17T23:34:50+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.046038s ] |
|||
[2021-05-17T23:34:50+08:00][sql] CONNECT:[ UseTime:0.090072s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-17T23:34:50+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.067350s ] |
|||
[2021-05-17T23:34:50+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.065776s ] |
|||
[2021-05-17T23:34:50+08:00][sql] SELECT * FROM `system_message` WHERE `receve_id` = 1 AND `type` = 1 ORDER BY `create_time` DESC LIMIT 1 [ RunTime:0.059336s ] |
|||
[2021-05-17T23:34:50+08:00][sql] SHOW FULL COLUMNS FROM `system_message_content` [ RunTime:0.059879s ] |
|||
[2021-05-17T23:34:50+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 7 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.060764s ] |
|||
[2021-05-17T23:34:50+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.059522s ] |
|||
[2021-05-17T23:34:50+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.059333s ] |
|||
[2021-05-17T23:34:50+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.058989s ] |
|||
[2021-05-17T23:34:50+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.061097s ] |
|||
[2021-05-17T23:34:50+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,209,210,211,26,192,205,198,206,207,208,200,201,202,203,204,3,11,189,212,216,217,218,219,220,213,214,215,4,14,199,190,191,197) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.066349s ] |
|||
[2021-05-17T23:34:50+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.058372s ] |
|||
[2021-05-17T23:34:50+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.061977s ] |
|||
[2021-05-17T23:34:50+08:00][sql] SELECT * FROM `system_message` WHERE ( `site_id` = 1 AND `type` = 1 AND `create_time` > 1620379101 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` ASC [ RunTime:0.060808s ] |
|||
[2021-05-17T23:35:50+08:00][sql] CONNECT:[ UseTime:0.096413s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-17T23:35:50+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.065910s ] |
|||
[2021-05-17T23:35:50+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.065069s ] |
|||
[2021-05-17T23:35:50+08:00][sql] SELECT * FROM `system_message` WHERE `receve_id` = 1 AND `type` = 1 ORDER BY `create_time` DESC LIMIT 1 [ RunTime:0.061011s ] |
|||
[2021-05-17T23:35:50+08:00][sql] SHOW FULL COLUMNS FROM `system_message_content` [ RunTime:0.064364s ] |
|||
[2021-05-17T23:35:50+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 7 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.062055s ] |
|||
[2021-05-17T23:35:50+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.060553s ] |
|||
[2021-05-17T23:35:50+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.060953s ] |
|||
[2021-05-17T23:35:50+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.064343s ] |
|||
[2021-05-17T23:35:50+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.063159s ] |
|||
[2021-05-17T23:35:50+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,209,210,211,26,192,205,198,206,207,208,200,201,202,203,204,3,11,189,212,216,217,218,219,220,213,214,215,4,14,199,190,191,197) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.065824s ] |
|||
[2021-05-17T23:35:50+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.060888s ] |
|||
[2021-05-17T23:35:50+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.062151s ] |
|||
[2021-05-17T23:35:50+08:00][sql] SELECT * FROM `system_message` WHERE ( `site_id` = 1 AND `type` = 1 AND `create_time` > 1620379101 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` ASC [ RunTime:0.062452s ] |
|||
[2021-05-17T23:35:51+08:00][sql] CONNECT:[ UseTime:0.096413s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-17T23:35:51+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.065450s ] |
|||
[2021-05-17T23:35:51+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.065856s ] |
|||
[2021-05-17T23:35:51+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.060598s ] |
|||
[2021-05-17T23:35:51+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.064152s ] |
|||
[2021-05-17T23:35:51+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.062352s ] |
|||
[2021-05-17T23:35:51+08:00][sql] SHOW FULL COLUMNS FROM `system_message_content` [ RunTime:0.059828s ] |
|||
[2021-05-17T23:35:51+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 7 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.059266s ] |
|||
[2021-05-17T23:35:51+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.067459s ] |
|||
[2021-05-17T23:35:51+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.062322s ] |
|||
[2021-05-17T23:35:51+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.065912s ] |
|||
[2021-05-17T23:35:51+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.064881s ] |
|||
[2021-05-17T23:35:51+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,209,210,211,26,192,205,198,206,207,208,200,201,202,203,204,3,11,189,212,216,217,218,219,220,213,214,215,4,14,199,190,191,197) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.064294s ] |
|||
[2021-05-17T23:35:51+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.064091s ] |
|||
[2021-05-17T23:35:51+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.060227s ] |
|||
[2021-05-17T23:35:51+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.061398s ] |
|||
[2021-05-17T23:36:50+08:00][sql] CONNECT:[ UseTime:0.088386s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-17T23:36:50+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.062216s ] |
|||
[2021-05-17T23:36:50+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.059782s ] |
|||
[2021-05-17T23:36:50+08:00][sql] SELECT * FROM `system_message` WHERE `receve_id` = 1 AND `type` = 1 ORDER BY `create_time` DESC LIMIT 1 [ RunTime:0.058680s ] |
|||
[2021-05-17T23:36:50+08:00][sql] SHOW FULL COLUMNS FROM `system_message_content` [ RunTime:0.059515s ] |
|||
[2021-05-17T23:36:50+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 7 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.058190s ] |
|||
[2021-05-17T23:36:50+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.062410s ] |
|||
[2021-05-17T23:36:50+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.058050s ] |
|||
[2021-05-17T23:36:50+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.057308s ] |
|||
[2021-05-17T23:36:50+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.058356s ] |
|||
[2021-05-17T23:36:50+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,209,210,211,26,192,205,198,206,207,208,200,201,202,203,204,3,11,189,212,216,217,218,219,220,213,214,215,4,14,199,190,191,197) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.060997s ] |
|||
[2021-05-17T23:36:50+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.057370s ] |
|||
[2021-05-17T23:36:50+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.057286s ] |
|||
[2021-05-17T23:36:50+08:00][sql] SELECT * FROM `system_message` WHERE ( `site_id` = 1 AND `type` = 1 AND `create_time` > 1620379101 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` ASC [ RunTime:0.060528s ] |
|||
[2021-05-17T23:36:51+08:00][sql] CONNECT:[ UseTime:0.097264s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-17T23:36:51+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.066724s ] |
|||
[2021-05-17T23:36:51+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.067683s ] |
|||
[2021-05-17T23:36:51+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.066535s ] |
|||
[2021-05-17T23:36:51+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.065680s ] |
|||
[2021-05-17T23:36:51+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.069924s ] |
|||
[2021-05-17T23:36:51+08:00][sql] SHOW FULL COLUMNS FROM `system_message_content` [ RunTime:0.064443s ] |
|||
[2021-05-17T23:36:51+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 7 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.066092s ] |
|||
[2021-05-17T23:36:51+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.067168s ] |
|||
[2021-05-17T23:36:51+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.065603s ] |
|||
[2021-05-17T23:36:51+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.064286s ] |
|||
[2021-05-17T23:36:51+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.068317s ] |
|||
[2021-05-17T23:36:51+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,209,210,211,26,192,205,198,206,207,208,200,201,202,203,204,3,11,189,212,216,217,218,219,220,213,214,215,4,14,199,190,191,197) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.068163s ] |
|||
[2021-05-17T23:36:51+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.065566s ] |
|||
[2021-05-17T23:36:51+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.064191s ] |
|||
[2021-05-17T23:36:51+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.065101s ] |
|||
[2021-05-17T23:37:50+08:00][sql] CONNECT:[ UseTime:0.077746s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-17T23:37:50+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.054118s ] |
|||
[2021-05-17T23:37:50+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.053387s ] |
|||
[2021-05-17T23:37:50+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.050193s ] |
|||
[2021-05-17T23:37:50+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.051355s ] |
|||
[2021-05-17T23:37:50+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.050775s ] |
|||
[2021-05-17T23:37:50+08:00][sql] SHOW FULL COLUMNS FROM `system_message_content` [ RunTime:0.053413s ] |
|||
[2021-05-17T23:37:50+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 7 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.054651s ] |
|||
[2021-05-17T23:37:50+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.055685s ] |
|||
[2021-05-17T23:37:50+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.053918s ] |
|||
[2021-05-17T23:37:50+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.050050s ] |
|||
[2021-05-17T23:37:50+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.052225s ] |
|||
[2021-05-17T23:37:50+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,209,210,211,26,192,205,198,206,207,208,200,201,202,203,204,3,11,189,212,216,217,218,219,220,213,214,215,4,14,199,190,191,197) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.051918s ] |
|||
[2021-05-17T23:37:50+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.052526s ] |
|||
[2021-05-17T23:37:50+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.050760s ] |
|||
[2021-05-17T23:37:50+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.050687s ] |
|||
[2021-05-17T23:37:50+08:00][sql] CONNECT:[ UseTime:0.089304s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-17T23:37:50+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.060804s ] |
|||
[2021-05-17T23:37:50+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.061677s ] |
|||
[2021-05-17T23:37:50+08:00][sql] SELECT * FROM `system_message` WHERE `receve_id` = 1 AND `type` = 1 ORDER BY `create_time` DESC LIMIT 1 [ RunTime:0.061237s ] |
|||
[2021-05-17T23:37:50+08:00][sql] SHOW FULL COLUMNS FROM `system_message_content` [ RunTime:0.060947s ] |
|||
[2021-05-17T23:37:50+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 7 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.061741s ] |
|||
[2021-05-17T23:37:50+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.062743s ] |
|||
[2021-05-17T23:37:50+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.061177s ] |
|||
[2021-05-17T23:37:50+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.061140s ] |
|||
[2021-05-17T23:37:50+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.064268s ] |
|||
[2021-05-17T23:37:50+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,209,210,211,26,192,205,198,206,207,208,200,201,202,203,204,3,11,189,212,216,217,218,219,220,213,214,215,4,14,199,190,191,197) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.065471s ] |
|||
[2021-05-17T23:37:50+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.060885s ] |
|||
[2021-05-17T23:37:50+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.065393s ] |
|||
[2021-05-17T23:37:50+08:00][sql] SELECT * FROM `system_message` WHERE ( `site_id` = 1 AND `type` = 1 AND `create_time` > 1620379101 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` ASC [ RunTime:0.062904s ] |
|||
[2021-05-17T23:38:50+08:00][sql] CONNECT:[ UseTime:0.089668s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-17T23:38:50+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.051731s ] |
|||
[2021-05-17T23:38:50+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.055893s ] |
|||
[2021-05-17T23:38:50+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.049540s ] |
|||
[2021-05-17T23:38:50+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.047076s ] |
|||
[2021-05-17T23:38:50+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.046579s ] |
|||
[2021-05-17T23:38:50+08:00][sql] SHOW FULL COLUMNS FROM `system_message_content` [ RunTime:0.047920s ] |
|||
[2021-05-17T23:38:50+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 7 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.047961s ] |
|||
[2021-05-17T23:38:50+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.049584s ] |
|||
[2021-05-17T23:38:50+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.045447s ] |
|||
[2021-05-17T23:38:50+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.048302s ] |
|||
[2021-05-17T23:38:50+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.051216s ] |
|||
[2021-05-17T23:38:50+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,209,210,211,26,192,205,198,206,207,208,200,201,202,203,204,3,11,189,212,216,217,218,219,220,213,214,215,4,14,199,190,191,197) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.049949s ] |
|||
[2021-05-17T23:38:50+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.046553s ] |
|||
[2021-05-17T23:38:50+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.052327s ] |
|||
[2021-05-17T23:38:50+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.045432s ] |
|||
[2021-05-17T23:38:50+08:00][sql] CONNECT:[ UseTime:0.096033s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-17T23:38:50+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.060610s ] |
|||
[2021-05-17T23:38:50+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.064809s ] |
|||
[2021-05-17T23:38:50+08:00][sql] SELECT * FROM `system_message` WHERE `receve_id` = 1 AND `type` = 1 ORDER BY `create_time` DESC LIMIT 1 [ RunTime:0.061041s ] |
|||
[2021-05-17T23:38:50+08:00][sql] SHOW FULL COLUMNS FROM `system_message_content` [ RunTime:0.061117s ] |
|||
[2021-05-17T23:38:50+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 7 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.059366s ] |
|||
[2021-05-17T23:38:50+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.064496s ] |
|||
[2021-05-17T23:38:50+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.061603s ] |
|||
[2021-05-17T23:38:50+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.058641s ] |
|||
[2021-05-17T23:38:50+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.063554s ] |
|||
[2021-05-17T23:38:50+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,209,210,211,26,192,205,198,206,207,208,200,201,202,203,204,3,11,189,212,216,217,218,219,220,213,214,215,4,14,199,190,191,197) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.064906s ] |
|||
[2021-05-17T23:38:50+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.060199s ] |
|||
[2021-05-17T23:38:50+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.072035s ] |
|||
[2021-05-17T23:38:50+08:00][sql] SELECT * FROM `system_message` WHERE ( `site_id` = 1 AND `type` = 1 AND `create_time` > 1620379101 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` ASC [ RunTime:0.064218s ] |
|||
[2021-05-17T23:39:50+08:00][sql] CONNECT:[ UseTime:0.077983s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-17T23:39:50+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.052957s ] |
|||
[2021-05-17T23:39:50+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.050720s ] |
|||
[2021-05-17T23:39:50+08:00][sql] SELECT * FROM `system_message` WHERE `receve_id` = 1 AND `type` = 1 ORDER BY `create_time` DESC LIMIT 1 [ RunTime:0.051978s ] |
|||
[2021-05-17T23:39:50+08:00][sql] SHOW FULL COLUMNS FROM `system_message_content` [ RunTime:0.052668s ] |
|||
[2021-05-17T23:39:50+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 7 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.051082s ] |
|||
[2021-05-17T23:39:50+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.050803s ] |
|||
[2021-05-17T23:39:50+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.050112s ] |
|||
[2021-05-17T23:39:50+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.049758s ] |
|||
[2021-05-17T23:39:50+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.050404s ] |
|||
[2021-05-17T23:39:50+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,209,210,211,26,192,205,198,206,207,208,200,201,202,203,204,3,11,189,212,216,217,218,219,220,213,214,215,4,14,199,190,191,197) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.051983s ] |
|||
[2021-05-17T23:39:50+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.050306s ] |
|||
[2021-05-17T23:39:50+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.054296s ] |
|||
[2021-05-17T23:39:50+08:00][sql] SELECT * FROM `system_message` WHERE ( `site_id` = 1 AND `type` = 1 AND `create_time` > 1620379101 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` ASC [ RunTime:0.049921s ] |
|||
[2021-05-17T23:39:51+08:00][sql] CONNECT:[ UseTime:0.090568s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-17T23:39:51+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.065070s ] |
|||
[2021-05-17T23:39:51+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.061013s ] |
|||
[2021-05-17T23:39:51+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.060766s ] |
|||
[2021-05-17T23:39:51+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.061407s ] |
|||
[2021-05-17T23:39:51+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.059544s ] |
|||
[2021-05-17T23:39:51+08:00][sql] SHOW FULL COLUMNS FROM `system_message_content` [ RunTime:0.063428s ] |
|||
[2021-05-17T23:39:51+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 7 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.060234s ] |
|||
[2021-05-17T23:39:51+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.059676s ] |
|||
[2021-05-17T23:39:51+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.061790s ] |
|||
[2021-05-17T23:39:51+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.061258s ] |
|||
[2021-05-17T23:39:51+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.060177s ] |
|||
[2021-05-17T23:39:51+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,209,210,211,26,192,205,198,206,207,208,200,201,202,203,204,3,11,189,212,216,217,218,219,220,213,214,215,4,14,199,190,191,197) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.064838s ] |
|||
[2021-05-17T23:39:51+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.059425s ] |
|||
[2021-05-17T23:39:51+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.061907s ] |
|||
[2021-05-17T23:39:51+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.058996s ] |
|||
[2021-05-17T23:40:50+08:00][sql] CONNECT:[ UseTime:0.100176s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-17T23:40:50+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.065870s ] |
|||
[2021-05-17T23:40:50+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.068023s ] |
|||
[2021-05-17T23:40:50+08:00][sql] SELECT * FROM `system_message` WHERE `receve_id` = 1 AND `type` = 1 ORDER BY `create_time` DESC LIMIT 1 [ RunTime:0.063103s ] |
|||
[2021-05-17T23:40:50+08:00][sql] SHOW FULL COLUMNS FROM `system_message_content` [ RunTime:0.068590s ] |
|||
[2021-05-17T23:40:50+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 7 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.067528s ] |
|||
[2021-05-17T23:40:50+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.066068s ] |
|||
[2021-05-17T23:40:50+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.069308s ] |
|||
[2021-05-17T23:40:50+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.065764s ] |
|||
[2021-05-17T23:40:50+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.064525s ] |
|||
[2021-05-17T23:40:50+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,209,210,211,26,192,205,198,206,207,208,200,201,202,203,204,3,11,189,212,216,217,218,219,220,213,214,215,4,14,199,190,191,197) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.069448s ] |
|||
[2021-05-17T23:40:50+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.070339s ] |
|||
[2021-05-17T23:40:50+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.064495s ] |
|||
[2021-05-17T23:40:50+08:00][sql] SELECT * FROM `system_message` WHERE ( `site_id` = 1 AND `type` = 1 AND `create_time` > 1620379101 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` ASC [ RunTime:0.063646s ] |
|||
[2021-05-17T23:40:51+08:00][sql] CONNECT:[ UseTime:0.094920s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-17T23:40:51+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.061505s ] |
|||
[2021-05-17T23:40:51+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.065852s ] |
|||
[2021-05-17T23:40:51+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.059258s ] |
|||
[2021-05-17T23:40:51+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.058199s ] |
|||
[2021-05-17T23:40:51+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.060779s ] |
|||
[2021-05-17T23:40:51+08:00][sql] SHOW FULL COLUMNS FROM `system_message_content` [ RunTime:0.067135s ] |
|||
[2021-05-17T23:40:51+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 7 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.059267s ] |
|||
[2021-05-17T23:40:51+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.060684s ] |
|||
[2021-05-17T23:40:51+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.058006s ] |
|||
[2021-05-17T23:40:51+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.061809s ] |
|||
[2021-05-17T23:40:51+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.060142s ] |
|||
[2021-05-17T23:40:51+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,209,210,211,26,192,205,198,206,207,208,200,201,202,203,204,3,11,189,212,216,217,218,219,220,213,214,215,4,14,199,190,191,197) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.070949s ] |
|||
[2021-05-17T23:40:51+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.060419s ] |
|||
[2021-05-17T23:40:51+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.061943s ] |
|||
[2021-05-17T23:40:51+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.065276s ] |
|||
[2021-05-17T23:41:50+08:00][sql] CONNECT:[ UseTime:0.085104s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-17T23:41:50+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.060325s ] |
|||
[2021-05-17T23:41:50+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.057298s ] |
|||
[2021-05-17T23:41:50+08:00][sql] SELECT * FROM `system_message` WHERE `receve_id` = 1 AND `type` = 1 ORDER BY `create_time` DESC LIMIT 1 [ RunTime:0.057635s ] |
|||
[2021-05-17T23:41:50+08:00][sql] SHOW FULL COLUMNS FROM `system_message_content` [ RunTime:0.057916s ] |
|||
[2021-05-17T23:41:50+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 7 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.057069s ] |
|||
[2021-05-17T23:41:50+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.060916s ] |
|||
[2021-05-17T23:41:50+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.061712s ] |
|||
[2021-05-17T23:41:50+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.058256s ] |
|||
[2021-05-17T23:41:50+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.057458s ] |
|||
[2021-05-17T23:41:50+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,209,210,211,26,192,205,198,206,207,208,200,201,202,203,204,3,11,189,212,216,217,218,219,220,213,214,215,4,14,199,190,191,197) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.062777s ] |
|||
[2021-05-17T23:41:50+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.060716s ] |
|||
[2021-05-17T23:41:50+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.059344s ] |
|||
[2021-05-17T23:41:50+08:00][sql] SELECT * FROM `system_message` WHERE ( `site_id` = 1 AND `type` = 1 AND `create_time` > 1620379101 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` ASC [ RunTime:0.060265s ] |
|||
[2021-05-17T23:41:50+08:00][sql] CONNECT:[ UseTime:0.076610s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-17T23:41:50+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.059876s ] |
|||
[2021-05-17T23:41:50+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.051858s ] |
|||
[2021-05-17T23:41:50+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.052281s ] |
|||
[2021-05-17T23:41:50+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.050060s ] |
|||
[2021-05-17T23:41:50+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.050386s ] |
|||
[2021-05-17T23:41:50+08:00][sql] SHOW FULL COLUMNS FROM `system_message_content` [ RunTime:0.050430s ] |
|||
[2021-05-17T23:41:50+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 7 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.054007s ] |
|||
[2021-05-17T23:41:50+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.051176s ] |
|||
[2021-05-17T23:41:50+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.051185s ] |
|||
[2021-05-17T23:41:50+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.052699s ] |
|||
[2021-05-17T23:41:50+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.051749s ] |
|||
[2021-05-17T23:41:50+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,209,210,211,26,192,205,198,206,207,208,200,201,202,203,204,3,11,189,212,216,217,218,219,220,213,214,215,4,14,199,190,191,197) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.053378s ] |
|||
[2021-05-17T23:41:50+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.055106s ] |
|||
[2021-05-17T23:41:50+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.050436s ] |
|||
[2021-05-17T23:41:50+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.050515s ] |
|||
[2021-05-17T23:42:50+08:00][sql] CONNECT:[ UseTime:0.091316s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-17T23:42:50+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.059840s ] |
|||
[2021-05-17T23:42:50+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.061557s ] |
|||
[2021-05-17T23:42:50+08:00][sql] SELECT * FROM `system_message` WHERE `receve_id` = 1 AND `type` = 1 ORDER BY `create_time` DESC LIMIT 1 [ RunTime:0.063105s ] |
|||
[2021-05-17T23:42:50+08:00][sql] SHOW FULL COLUMNS FROM `system_message_content` [ RunTime:0.057617s ] |
|||
[2021-05-17T23:42:50+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 7 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.055474s ] |
|||
[2021-05-17T23:42:50+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.059124s ] |
|||
[2021-05-17T23:42:50+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.058378s ] |
|||
[2021-05-17T23:42:50+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.055407s ] |
|||
[2021-05-17T23:42:50+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.058300s ] |
|||
[2021-05-17T23:42:50+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,209,210,211,26,192,205,198,206,207,208,200,201,202,203,204,3,11,189,212,216,217,218,219,220,213,214,215,4,14,199,190,191,197) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.059217s ] |
|||
[2021-05-17T23:42:50+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.065717s ] |
|||
[2021-05-17T23:42:50+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.060857s ] |
|||
[2021-05-17T23:42:50+08:00][sql] SELECT * FROM `system_message` WHERE ( `site_id` = 1 AND `type` = 1 AND `create_time` > 1620379101 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` ASC [ RunTime:0.056361s ] |
|||
[2021-05-17T23:42:51+08:00][sql] CONNECT:[ UseTime:0.091866s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-05-17T23:42:51+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.059754s ] |
|||
[2021-05-17T23:42:51+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.061542s ] |
|||
[2021-05-17T23:42:51+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.062974s ] |
|||
[2021-05-17T23:42:51+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.057523s ] |
|||
[2021-05-17T23:42:51+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.056268s ] |
|||
[2021-05-17T23:42:51+08:00][sql] SHOW FULL COLUMNS FROM `system_message_content` [ RunTime:0.061099s ] |
|||
[2021-05-17T23:42:51+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 7 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.056637s ] |
|||
[2021-05-17T23:42:51+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.061993s ] |
|||
[2021-05-17T23:42:51+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.056423s ] |
|||
[2021-05-17T23:42:51+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.059590s ] |
|||
[2021-05-17T23:42:51+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.063701s ] |
|||
[2021-05-17T23:42:51+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,209,210,211,26,192,205,198,206,207,208,200,201,202,203,204,3,11,189,212,216,217,218,219,220,213,214,215,4,14,199,190,191,197) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.060955s ] |
|||
[2021-05-17T23:42:51+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.057531s ] |
|||
[2021-05-17T23:42:51+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.057817s ] |
|||
[2021-05-17T23:42:51+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.059205s ] |
|||
|
|||
File diff suppressed because it is too large
File diff suppressed because it is too large
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
File diff suppressed because it is too large
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
File diff suppressed because it is too large
File diff suppressed because it is too large
File diff suppressed because it is too large
File diff suppressed because it is too large
@ -1,12 +0,0 @@ |
|||
[2021-10-24T16:11:49+08:00][sql] CONNECT:[ UseTime:0.099899s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-10-24T16:11:49+08:00][sql] SHOW FULL COLUMNS FROM `system_upload_log` [ RunTime:0.220641s ] |
|||
[2021-10-24T16:11:49+08:00][sql] INSERT INTO `system_upload_log` SET `name` = 'aec369e5a873926c2fabae3c0d3d88da.png' , `host` = 'www.xianyanxue.com' , `y` = '2021' , `m` = '10' , `d` = '24' , `url` = 'http://static.ahbmz.com/www.xianyanxue.com/2021/10/24/aec369e5a873926c2fabae3c0d3d88da.png' , `type` = 'png' , `size` = 8883 , `date` = '1024' , `create_time` = 1635063108 , `update_time` = 1635063108 [ RunTime:0.113403s ] |
|||
[2021-10-24T16:11:49+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.109403s ] |
|||
[2021-10-24T16:11:49+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.071926s ] |
|||
[2021-10-24T16:11:49+08:00][error] [8]未定义数组索引: HTTP_USER_AGENT[/Users/wwwroot/ahbmz/api.base.ahbmz.com/app/common.php:222] |
|||
[2021-10-24T16:15:44+08:00][sql] CONNECT:[ UseTime:0.093149s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2021-10-24T16:15:44+08:00][sql] SHOW FULL COLUMNS FROM `system_upload_log` [ RunTime:0.087834s ] |
|||
[2021-10-24T16:15:44+08:00][sql] INSERT INTO `system_upload_log` SET `name` = '6e3e9d362b3581064215d705f0e1911e.png' , `host` = 'www.xianyanxue.com' , `y` = '2021' , `m` = '10' , `d` = '24' , `url` = 'http://static.ahbmz.com/www.xianyanxue.com/2021/10/24/6e3e9d362b3581064215d705f0e1911e.png' , `type` = 'png' , `size` = 389 , `date` = '1024' , `create_time` = 1635063344 , `update_time` = 1635063344 [ RunTime:0.061827s ] |
|||
[2021-10-24T16:15:44+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.066111s ] |
|||
[2021-10-24T16:15:44+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.082167s ] |
|||
[2021-10-24T16:15:44+08:00][error] [8]未定义数组索引: HTTP_USER_AGENT[/Users/wwwroot/ahbmz/api.base.ahbmz.com/app/common.php:222] |
|||
File diff suppressed because it is too large
File diff suppressed because it is too large
File diff suppressed because it is too large
File diff suppressed because it is too large
File diff suppressed because it is too large
File diff suppressed because it is too large
File diff suppressed because it is too large
File diff suppressed because it is too large
File diff suppressed because it is too large
File diff suppressed because it is too large
@ -0,0 +1,2 @@ |
|||
[2021-12-27T08:00:45+08:00][error] [10501]SQLSTATE[HY000] [2002] Network is unreachable[/Users/wwwroot/ahbmz/api.cms.ahbmz.com/vendor/topthink/think-orm/src/db/PDOConnection.php:795] |
|||
[2021-12-27T08:00:45+08:00][error] [10501]SQLSTATE[HY000] [2002] Network is unreachable[/Users/wwwroot/ahbmz/api.cms.ahbmz.com/vendor/topthink/think-orm/src/db/PDOConnection.php:795] |
|||
@ -0,0 +1,2 @@ |
|||
[2021-12-28T08:10:17+08:00][error] [10501]SQLSTATE[HY000] [2002] Network is unreachable[/Users/wwwroot/ahbmz/api.cms.ahbmz.com/vendor/topthink/think-orm/src/db/PDOConnection.php:795] |
|||
[2021-12-28T08:10:17+08:00][error] [10501]SQLSTATE[HY000] [2002] Network is unreachable[/Users/wwwroot/ahbmz/api.cms.ahbmz.com/vendor/topthink/think-orm/src/db/PDOConnection.php:795] |
|||
File diff suppressed because it is too large
File diff suppressed because it is too large
@ -0,0 +1,4 @@ |
|||
[2021-12-31T08:37:06+08:00][error] [10501]SQLSTATE[HY000] [2002] Network is unreachable[/Users/wwwroot/ahbmz/api.cms.ahbmz.com/vendor/topthink/think-orm/src/db/PDOConnection.php:795] |
|||
[2021-12-31T08:37:06+08:00][error] [10501]SQLSTATE[HY000] [2002] Network is unreachable[/Users/wwwroot/ahbmz/api.cms.ahbmz.com/vendor/topthink/think-orm/src/db/PDOConnection.php:795] |
|||
[2021-12-31T22:31:15+08:00][error] [10501]SQLSTATE[HY000] [2002] Network is unreachable[/Users/wwwroot/ahbmz/api.cms.ahbmz.com/vendor/topthink/think-orm/src/db/PDOConnection.php:795] |
|||
[2021-12-31T22:31:15+08:00][error] [10501]SQLSTATE[HY000] [2002] Network is unreachable[/Users/wwwroot/ahbmz/api.cms.ahbmz.com/vendor/topthink/think-orm/src/db/PDOConnection.php:795] |
|||
@ -0,0 +1,2 @@ |
|||
[2022-01-03T15:10:56+08:00][error] [10501]SQLSTATE[HY000] [2002] Network is unreachable[/Users/wwwroot/ahbmz/api.cms.ahbmz.com/vendor/topthink/think-orm/src/db/PDOConnection.php:795] |
|||
[2022-01-03T15:10:56+08:00][error] [10501]SQLSTATE[HY000] [2002] Network is unreachable[/Users/wwwroot/ahbmz/api.cms.ahbmz.com/vendor/topthink/think-orm/src/db/PDOConnection.php:795] |
|||
@ -0,0 +1,904 @@ |
|||
[2022-01-04T08:42:52+08:00][error] [10501]SQLSTATE[HY000] [2002] Network is unreachable[/Users/wwwroot/ahbmz/api.cms.ahbmz.com/vendor/topthink/think-orm/src/db/PDOConnection.php:795] |
|||
[2022-01-04T08:42:52+08:00][error] [10501]SQLSTATE[HY000] [2002] Network is unreachable[/Users/wwwroot/ahbmz/api.cms.ahbmz.com/vendor/topthink/think-orm/src/db/PDOConnection.php:795] |
|||
[2022-01-04T08:43:53+08:00][error] [10501]SQLSTATE[HY000] [2002] Network is unreachable[/Users/wwwroot/ahbmz/api.cms.ahbmz.com/vendor/topthink/think-orm/src/db/PDOConnection.php:795] |
|||
[2022-01-04T08:43:53+08:00][error] [10501]SQLSTATE[HY000] [2002] Network is unreachable[/Users/wwwroot/ahbmz/api.cms.ahbmz.com/vendor/topthink/think-orm/src/db/PDOConnection.php:795] |
|||
[2022-01-04T21:25:10+08:00][sql] CONNECT:[ UseTime:0.267306s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2022-01-04T21:25:10+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.086663s ] |
|||
[2022-01-04T21:25:10+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.127949s ] |
|||
[2022-01-04T21:25:10+08:00][sql] SELECT * FROM `system_message` WHERE `receve_id` = 1 AND `type` = 1 ORDER BY `create_time` DESC LIMIT 1 [ RunTime:0.071555s ] |
|||
[2022-01-04T21:25:10+08:00][sql] SHOW FULL COLUMNS FROM `system_message_content` [ RunTime:0.067086s ] |
|||
[2022-01-04T21:25:10+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 7 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.066001s ] |
|||
[2022-01-04T21:25:10+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.060865s ] |
|||
[2022-01-04T21:25:10+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.061226s ] |
|||
[2022-01-04T21:25:10+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.059041s ] |
|||
[2022-01-04T21:25:10+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.060776s ] |
|||
[2022-01-04T21:25:10+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,209,210,211,26,192,205,198,206,207,208,200,201,202,203,204,3,11,189,212,216,217,218,219,220,213,214,215,221,222,223,224,225,226,227,228,229,230,232,231,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,253,254,255,256,257,258,4,14,199,190,191,197,248,249,250,251,252) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.059896s ] |
|||
[2022-01-04T21:25:10+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.057910s ] |
|||
[2022-01-04T21:25:10+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.056117s ] |
|||
[2022-01-04T21:25:10+08:00][sql] SELECT * FROM `system_message` WHERE ( `site_id` = 1 AND `type` = 1 AND `create_time` > 1620379101 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` ASC [ RunTime:0.055511s ] |
|||
[2022-01-04T21:25:11+08:00][sql] CONNECT:[ UseTime:0.268225s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2022-01-04T21:25:11+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.110015s ] |
|||
[2022-01-04T21:25:11+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.160943s ] |
|||
[2022-01-04T21:25:11+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.070553s ] |
|||
[2022-01-04T21:25:11+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.090757s ] |
|||
[2022-01-04T21:25:11+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.066776s ] |
|||
[2022-01-04T21:25:11+08:00][sql] SHOW FULL COLUMNS FROM `system_message_content` [ RunTime:0.069754s ] |
|||
[2022-01-04T21:25:11+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 7 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.067242s ] |
|||
[2022-01-04T21:25:11+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.065816s ] |
|||
[2022-01-04T21:25:11+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.066789s ] |
|||
[2022-01-04T21:25:11+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.066303s ] |
|||
[2022-01-04T21:25:11+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.069563s ] |
|||
[2022-01-04T21:25:11+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,209,210,211,26,192,205,198,206,207,208,200,201,202,203,204,3,11,189,212,216,217,218,219,220,213,214,215,221,222,223,224,225,226,227,228,229,230,232,231,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,253,254,255,256,257,258,4,14,199,190,191,197,248,249,250,251,252) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.073378s ] |
|||
[2022-01-04T21:25:11+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.068233s ] |
|||
[2022-01-04T21:25:11+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.068159s ] |
|||
[2022-01-04T21:25:11+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.067426s ] |
|||
[2022-01-04T21:27:12+08:00][sql] CONNECT:[ UseTime:0.121494s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2022-01-04T21:27:12+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.074273s ] |
|||
[2022-01-04T21:27:12+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.070101s ] |
|||
[2022-01-04T21:27:12+08:00][sql] SELECT * FROM `system_message` WHERE `receve_id` = 1 AND `type` = 1 ORDER BY `create_time` DESC LIMIT 1 [ RunTime:0.074687s ] |
|||
[2022-01-04T21:27:12+08:00][sql] SHOW FULL COLUMNS FROM `system_message_content` [ RunTime:0.083884s ] |
|||
[2022-01-04T21:27:12+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 7 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.078797s ] |
|||
[2022-01-04T21:27:12+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.082712s ] |
|||
[2022-01-04T21:27:12+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.083153s ] |
|||
[2022-01-04T21:27:12+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.086374s ] |
|||
[2022-01-04T21:27:12+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.076458s ] |
|||
[2022-01-04T21:27:12+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,209,210,211,26,192,205,198,206,207,208,200,201,202,203,204,3,11,189,212,216,217,218,219,220,213,214,215,221,222,223,224,225,226,227,228,229,230,232,231,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,253,254,255,256,257,258,4,14,199,190,191,197,248,249,250,251,252) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.080847s ] |
|||
[2022-01-04T21:27:12+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.078997s ] |
|||
[2022-01-04T21:27:12+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.086992s ] |
|||
[2022-01-04T21:27:12+08:00][sql] SELECT * FROM `system_message` WHERE ( `site_id` = 1 AND `type` = 1 AND `create_time` > 1620379101 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` ASC [ RunTime:0.076839s ] |
|||
[2022-01-04T21:27:13+08:00][sql] CONNECT:[ UseTime:1.114843s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2022-01-04T21:27:13+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.070005s ] |
|||
[2022-01-04T21:27:13+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.077744s ] |
|||
[2022-01-04T21:27:13+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.071099s ] |
|||
[2022-01-04T21:27:13+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.069854s ] |
|||
[2022-01-04T21:27:13+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.075846s ] |
|||
[2022-01-04T21:27:13+08:00][sql] SHOW FULL COLUMNS FROM `system_message_content` [ RunTime:0.074722s ] |
|||
[2022-01-04T21:27:13+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 7 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.068635s ] |
|||
[2022-01-04T21:27:13+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.068017s ] |
|||
[2022-01-04T21:27:13+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.071327s ] |
|||
[2022-01-04T21:27:13+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.067518s ] |
|||
[2022-01-04T21:27:13+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.082931s ] |
|||
[2022-01-04T21:27:13+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,209,210,211,26,192,205,198,206,207,208,200,201,202,203,204,3,11,189,212,216,217,218,219,220,213,214,215,221,222,223,224,225,226,227,228,229,230,232,231,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,253,254,255,256,257,258,4,14,199,190,191,197,248,249,250,251,252) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.075459s ] |
|||
[2022-01-04T21:27:13+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.072071s ] |
|||
[2022-01-04T21:27:13+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.084279s ] |
|||
[2022-01-04T21:27:13+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.074277s ] |
|||
[2022-01-04T21:28:13+08:00][sql] CONNECT:[ UseTime:0.097652s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2022-01-04T21:28:13+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.095589s ] |
|||
[2022-01-04T21:28:13+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.065910s ] |
|||
[2022-01-04T21:28:13+08:00][sql] SELECT * FROM `system_message` WHERE `receve_id` = 1 AND `type` = 1 ORDER BY `create_time` DESC LIMIT 1 [ RunTime:0.063358s ] |
|||
[2022-01-04T21:28:13+08:00][sql] SHOW FULL COLUMNS FROM `system_message_content` [ RunTime:0.065232s ] |
|||
[2022-01-04T21:28:13+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 7 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.062635s ] |
|||
[2022-01-04T21:28:13+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.063825s ] |
|||
[2022-01-04T21:28:13+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.067125s ] |
|||
[2022-01-04T21:28:13+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.062116s ] |
|||
[2022-01-04T21:28:13+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.064818s ] |
|||
[2022-01-04T21:28:13+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,209,210,211,26,192,205,198,206,207,208,200,201,202,203,204,3,11,189,212,216,217,218,219,220,213,214,215,221,222,223,224,225,226,227,228,229,230,232,231,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,253,254,255,256,257,258,4,14,199,190,191,197,248,249,250,251,252) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.065665s ] |
|||
[2022-01-04T21:28:13+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.065864s ] |
|||
[2022-01-04T21:28:13+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.063011s ] |
|||
[2022-01-04T21:28:13+08:00][sql] SELECT * FROM `system_message` WHERE ( `site_id` = 1 AND `type` = 1 AND `create_time` > 1620379101 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` ASC [ RunTime:0.066441s ] |
|||
[2022-01-04T21:28:13+08:00][sql] CONNECT:[ UseTime:0.098685s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2022-01-04T21:28:13+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.229223s ] |
|||
[2022-01-04T21:28:13+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.065760s ] |
|||
[2022-01-04T21:28:13+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.065972s ] |
|||
[2022-01-04T21:28:13+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.068073s ] |
|||
[2022-01-04T21:28:13+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.065816s ] |
|||
[2022-01-04T21:28:13+08:00][sql] SHOW FULL COLUMNS FROM `system_message_content` [ RunTime:0.068153s ] |
|||
[2022-01-04T21:28:13+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 7 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.064959s ] |
|||
[2022-01-04T21:28:13+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.067991s ] |
|||
[2022-01-04T21:28:13+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.070438s ] |
|||
[2022-01-04T21:28:13+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.067123s ] |
|||
[2022-01-04T21:28:13+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.069006s ] |
|||
[2022-01-04T21:28:13+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,209,210,211,26,192,205,198,206,207,208,200,201,202,203,204,3,11,189,212,216,217,218,219,220,213,214,215,221,222,223,224,225,226,227,228,229,230,232,231,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,253,254,255,256,257,258,4,14,199,190,191,197,248,249,250,251,252) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.069240s ] |
|||
[2022-01-04T21:28:13+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.065708s ] |
|||
[2022-01-04T21:28:13+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.066169s ] |
|||
[2022-01-04T21:28:13+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.066486s ] |
|||
[2022-01-04T21:29:15+08:00][sql] CONNECT:[ UseTime:0.106053s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2022-01-04T21:29:15+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.074406s ] |
|||
[2022-01-04T21:29:15+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.072070s ] |
|||
[2022-01-04T21:29:15+08:00][sql] SELECT * FROM `system_message` WHERE `receve_id` = 1 AND `type` = 1 ORDER BY `create_time` DESC LIMIT 1 [ RunTime:0.070642s ] |
|||
[2022-01-04T21:29:15+08:00][sql] SHOW FULL COLUMNS FROM `system_message_content` [ RunTime:0.072800s ] |
|||
[2022-01-04T21:29:15+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 7 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.069121s ] |
|||
[2022-01-04T21:29:15+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.071109s ] |
|||
[2022-01-04T21:29:15+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.070526s ] |
|||
[2022-01-04T21:29:15+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.067419s ] |
|||
[2022-01-04T21:29:15+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.069749s ] |
|||
[2022-01-04T21:29:15+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,209,210,211,26,192,205,198,206,207,208,200,201,202,203,204,3,11,189,212,216,217,218,219,220,213,214,215,221,222,223,224,225,226,227,228,229,230,232,231,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,253,254,255,256,257,258,4,14,199,190,191,197,248,249,250,251,252) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.076685s ] |
|||
[2022-01-04T21:29:15+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.070361s ] |
|||
[2022-01-04T21:29:15+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.069539s ] |
|||
[2022-01-04T21:29:15+08:00][sql] SELECT * FROM `system_message` WHERE ( `site_id` = 1 AND `type` = 1 AND `create_time` > 1620379101 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` ASC [ RunTime:0.069605s ] |
|||
[2022-01-04T21:29:15+08:00][sql] CONNECT:[ UseTime:0.104112s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2022-01-04T21:29:15+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.073852s ] |
|||
[2022-01-04T21:29:15+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.066463s ] |
|||
[2022-01-04T21:29:15+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.067964s ] |
|||
[2022-01-04T21:29:15+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.067448s ] |
|||
[2022-01-04T21:29:15+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.066897s ] |
|||
[2022-01-04T21:29:15+08:00][sql] SHOW FULL COLUMNS FROM `system_message_content` [ RunTime:0.069127s ] |
|||
[2022-01-04T21:29:15+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 7 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.068519s ] |
|||
[2022-01-04T21:29:15+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.068865s ] |
|||
[2022-01-04T21:29:15+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.068307s ] |
|||
[2022-01-04T21:29:15+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.069191s ] |
|||
[2022-01-04T21:29:15+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.066520s ] |
|||
[2022-01-04T21:29:15+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,209,210,211,26,192,205,198,206,207,208,200,201,202,203,204,3,11,189,212,216,217,218,219,220,213,214,215,221,222,223,224,225,226,227,228,229,230,232,231,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,253,254,255,256,257,258,4,14,199,190,191,197,248,249,250,251,252) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.071464s ] |
|||
[2022-01-04T21:29:15+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.067135s ] |
|||
[2022-01-04T21:29:15+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.066917s ] |
|||
[2022-01-04T21:29:15+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.065468s ] |
|||
[2022-01-04T21:30:15+08:00][sql] CONNECT:[ UseTime:0.086654s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2022-01-04T21:30:15+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.049345s ] |
|||
[2022-01-04T21:30:15+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.051175s ] |
|||
[2022-01-04T21:30:15+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.066402s ] |
|||
[2022-01-04T21:30:15+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.049949s ] |
|||
[2022-01-04T21:30:15+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.051919s ] |
|||
[2022-01-04T21:30:15+08:00][sql] SHOW FULL COLUMNS FROM `system_message_content` [ RunTime:0.049724s ] |
|||
[2022-01-04T21:30:15+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 7 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.051468s ] |
|||
[2022-01-04T21:30:15+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.047999s ] |
|||
[2022-01-04T21:30:15+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.050561s ] |
|||
[2022-01-04T21:30:15+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.049011s ] |
|||
[2022-01-04T21:30:15+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.050604s ] |
|||
[2022-01-04T21:30:15+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,209,210,211,26,192,205,198,206,207,208,200,201,202,203,204,3,11,189,212,216,217,218,219,220,213,214,215,221,222,223,224,225,226,227,228,229,230,232,231,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,253,254,255,256,257,258,4,14,199,190,191,197,248,249,250,251,252) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.062389s ] |
|||
[2022-01-04T21:30:15+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.051826s ] |
|||
[2022-01-04T21:30:15+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.048998s ] |
|||
[2022-01-04T21:30:15+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.047804s ] |
|||
[2022-01-04T21:30:15+08:00][sql] CONNECT:[ UseTime:0.108349s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2022-01-04T21:30:15+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.073056s ] |
|||
[2022-01-04T21:30:15+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.078130s ] |
|||
[2022-01-04T21:30:15+08:00][sql] SELECT * FROM `system_message` WHERE `receve_id` = 1 AND `type` = 1 ORDER BY `create_time` DESC LIMIT 1 [ RunTime:0.069420s ] |
|||
[2022-01-04T21:30:15+08:00][sql] SHOW FULL COLUMNS FROM `system_message_content` [ RunTime:0.075466s ] |
|||
[2022-01-04T21:30:15+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 7 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.073667s ] |
|||
[2022-01-04T21:30:15+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.076396s ] |
|||
[2022-01-04T21:30:15+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.070647s ] |
|||
[2022-01-04T21:30:15+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.071415s ] |
|||
[2022-01-04T21:30:15+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.073518s ] |
|||
[2022-01-04T21:30:15+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,209,210,211,26,192,205,198,206,207,208,200,201,202,203,204,3,11,189,212,216,217,218,219,220,213,214,215,221,222,223,224,225,226,227,228,229,230,232,231,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,253,254,255,256,257,258,4,14,199,190,191,197,248,249,250,251,252) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.077523s ] |
|||
[2022-01-04T21:30:15+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.069250s ] |
|||
[2022-01-04T21:30:15+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.079765s ] |
|||
[2022-01-04T21:30:15+08:00][sql] SELECT * FROM `system_message` WHERE ( `site_id` = 1 AND `type` = 1 AND `create_time` > 1620379101 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` ASC [ RunTime:0.070798s ] |
|||
[2022-01-04T21:31:16+08:00][sql] CONNECT:[ UseTime:0.108360s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2022-01-04T21:31:16+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.070708s ] |
|||
[2022-01-04T21:31:16+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.064665s ] |
|||
[2022-01-04T21:31:16+08:00][sql] SELECT * FROM `system_message` WHERE `receve_id` = 1 AND `type` = 1 ORDER BY `create_time` DESC LIMIT 1 [ RunTime:0.066366s ] |
|||
[2022-01-04T21:31:16+08:00][sql] SHOW FULL COLUMNS FROM `system_message_content` [ RunTime:0.066635s ] |
|||
[2022-01-04T21:31:16+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 7 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.069585s ] |
|||
[2022-01-04T21:31:16+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.064044s ] |
|||
[2022-01-04T21:31:16+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.068005s ] |
|||
[2022-01-04T21:31:16+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.063615s ] |
|||
[2022-01-04T21:31:16+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.068066s ] |
|||
[2022-01-04T21:31:16+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,209,210,211,26,192,205,198,206,207,208,200,201,202,203,204,3,11,189,212,216,217,218,219,220,213,214,215,221,222,223,224,225,226,227,228,229,230,232,231,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,253,254,255,256,257,258,4,14,199,190,191,197,248,249,250,251,252) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.068685s ] |
|||
[2022-01-04T21:31:16+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.066233s ] |
|||
[2022-01-04T21:31:16+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.062927s ] |
|||
[2022-01-04T21:31:16+08:00][sql] SELECT * FROM `system_message` WHERE ( `site_id` = 1 AND `type` = 1 AND `create_time` > 1620379101 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` ASC [ RunTime:0.068974s ] |
|||
[2022-01-04T21:31:16+08:00][sql] CONNECT:[ UseTime:0.092316s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2022-01-04T21:31:16+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.066530s ] |
|||
[2022-01-04T21:31:16+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.059621s ] |
|||
[2022-01-04T21:31:16+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.058161s ] |
|||
[2022-01-04T21:31:16+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.062595s ] |
|||
[2022-01-04T21:31:16+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.061563s ] |
|||
[2022-01-04T21:31:16+08:00][sql] SHOW FULL COLUMNS FROM `system_message_content` [ RunTime:0.062883s ] |
|||
[2022-01-04T21:31:16+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 7 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.059042s ] |
|||
[2022-01-04T21:31:16+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.061296s ] |
|||
[2022-01-04T21:31:16+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.061394s ] |
|||
[2022-01-04T21:31:16+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.056799s ] |
|||
[2022-01-04T21:31:16+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.058793s ] |
|||
[2022-01-04T21:31:16+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,209,210,211,26,192,205,198,206,207,208,200,201,202,203,204,3,11,189,212,216,217,218,219,220,213,214,215,221,222,223,224,225,226,227,228,229,230,232,231,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,253,254,255,256,257,258,4,14,199,190,191,197,248,249,250,251,252) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.060153s ] |
|||
[2022-01-04T21:31:16+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.064362s ] |
|||
[2022-01-04T21:31:16+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.059292s ] |
|||
[2022-01-04T21:31:16+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.060596s ] |
|||
[2022-01-04T21:32:17+08:00][sql] CONNECT:[ UseTime:0.091981s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2022-01-04T21:32:17+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.065855s ] |
|||
[2022-01-04T21:32:17+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.061623s ] |
|||
[2022-01-04T21:32:17+08:00][sql] SELECT * FROM `system_message` WHERE `receve_id` = 1 AND `type` = 1 ORDER BY `create_time` DESC LIMIT 1 [ RunTime:0.061882s ] |
|||
[2022-01-04T21:32:17+08:00][sql] SHOW FULL COLUMNS FROM `system_message_content` [ RunTime:0.061036s ] |
|||
[2022-01-04T21:32:17+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 7 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.072098s ] |
|||
[2022-01-04T21:32:17+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.069092s ] |
|||
[2022-01-04T21:32:17+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.065011s ] |
|||
[2022-01-04T21:32:17+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.066292s ] |
|||
[2022-01-04T21:32:17+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.067422s ] |
|||
[2022-01-04T21:32:17+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,209,210,211,26,192,205,198,206,207,208,200,201,202,203,204,3,11,189,212,216,217,218,219,220,213,214,215,221,222,223,224,225,226,227,228,229,230,232,231,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,253,254,255,256,257,258,4,14,199,190,191,197,248,249,250,251,252) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.069469s ] |
|||
[2022-01-04T21:32:17+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.061121s ] |
|||
[2022-01-04T21:32:17+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.063569s ] |
|||
[2022-01-04T21:32:17+08:00][sql] SELECT * FROM `system_message` WHERE ( `site_id` = 1 AND `type` = 1 AND `create_time` > 1620379101 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` ASC [ RunTime:0.062237s ] |
|||
[2022-01-04T21:32:17+08:00][sql] CONNECT:[ UseTime:0.115908s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2022-01-04T21:32:17+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.081496s ] |
|||
[2022-01-04T21:32:17+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.077854s ] |
|||
[2022-01-04T21:32:17+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.084074s ] |
|||
[2022-01-04T21:32:17+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.079404s ] |
|||
[2022-01-04T21:32:17+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.080470s ] |
|||
[2022-01-04T21:32:17+08:00][sql] SHOW FULL COLUMNS FROM `system_message_content` [ RunTime:0.081425s ] |
|||
[2022-01-04T21:32:17+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 7 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.076422s ] |
|||
[2022-01-04T21:32:17+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.081033s ] |
|||
[2022-01-04T21:32:17+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.077631s ] |
|||
[2022-01-04T21:32:17+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.076949s ] |
|||
[2022-01-04T21:32:17+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.080199s ] |
|||
[2022-01-04T21:32:17+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,209,210,211,26,192,205,198,206,207,208,200,201,202,203,204,3,11,189,212,216,217,218,219,220,213,214,215,221,222,223,224,225,226,227,228,229,230,232,231,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,253,254,255,256,257,258,4,14,199,190,191,197,248,249,250,251,252) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.079294s ] |
|||
[2022-01-04T21:32:17+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.074990s ] |
|||
[2022-01-04T21:32:17+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.079601s ] |
|||
[2022-01-04T21:32:17+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.078931s ] |
|||
[2022-01-04T21:33:18+08:00][sql] CONNECT:[ UseTime:0.094284s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2022-01-04T21:33:18+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.068141s ] |
|||
[2022-01-04T21:33:18+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.066026s ] |
|||
[2022-01-04T21:33:18+08:00][sql] SELECT * FROM `system_message` WHERE `receve_id` = 1 AND `type` = 1 ORDER BY `create_time` DESC LIMIT 1 [ RunTime:0.063780s ] |
|||
[2022-01-04T21:33:18+08:00][sql] SHOW FULL COLUMNS FROM `system_message_content` [ RunTime:0.062850s ] |
|||
[2022-01-04T21:33:18+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 7 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.061099s ] |
|||
[2022-01-04T21:33:18+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.064948s ] |
|||
[2022-01-04T21:33:18+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.061359s ] |
|||
[2022-01-04T21:33:18+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.059977s ] |
|||
[2022-01-04T21:33:18+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.061577s ] |
|||
[2022-01-04T21:33:18+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,209,210,211,26,192,205,198,206,207,208,200,201,202,203,204,3,11,189,212,216,217,218,219,220,213,214,215,221,222,223,224,225,226,227,228,229,230,232,231,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,253,254,255,256,257,258,4,14,199,190,191,197,248,249,250,251,252) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.063151s ] |
|||
[2022-01-04T21:33:18+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.065166s ] |
|||
[2022-01-04T21:33:18+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.060868s ] |
|||
[2022-01-04T21:33:18+08:00][sql] SELECT * FROM `system_message` WHERE ( `site_id` = 1 AND `type` = 1 AND `create_time` > 1620379101 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` ASC [ RunTime:0.061031s ] |
|||
[2022-01-04T21:33:18+08:00][sql] CONNECT:[ UseTime:0.095789s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2022-01-04T21:33:18+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.066804s ] |
|||
[2022-01-04T21:33:18+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.067787s ] |
|||
[2022-01-04T21:33:18+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.064338s ] |
|||
[2022-01-04T21:33:18+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.062876s ] |
|||
[2022-01-04T21:33:18+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.066357s ] |
|||
[2022-01-04T21:33:18+08:00][sql] SHOW FULL COLUMNS FROM `system_message_content` [ RunTime:0.065587s ] |
|||
[2022-01-04T21:33:18+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 7 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.064156s ] |
|||
[2022-01-04T21:33:18+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.063309s ] |
|||
[2022-01-04T21:33:18+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.064436s ] |
|||
[2022-01-04T21:33:18+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.062761s ] |
|||
[2022-01-04T21:33:18+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.069982s ] |
|||
[2022-01-04T21:33:18+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,209,210,211,26,192,205,198,206,207,208,200,201,202,203,204,3,11,189,212,216,217,218,219,220,213,214,215,221,222,223,224,225,226,227,228,229,230,232,231,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,253,254,255,256,257,258,4,14,199,190,191,197,248,249,250,251,252) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.069669s ] |
|||
[2022-01-04T21:33:18+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.069270s ] |
|||
[2022-01-04T21:33:18+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.064206s ] |
|||
[2022-01-04T21:33:18+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.064559s ] |
|||
[2022-01-04T21:34:19+08:00][sql] CONNECT:[ UseTime:0.095165s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2022-01-04T21:34:19+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.057504s ] |
|||
[2022-01-04T21:34:19+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.058075s ] |
|||
[2022-01-04T21:34:19+08:00][sql] SELECT * FROM `system_message` WHERE `receve_id` = 1 AND `type` = 1 ORDER BY `create_time` DESC LIMIT 1 [ RunTime:0.058879s ] |
|||
[2022-01-04T21:34:19+08:00][sql] SHOW FULL COLUMNS FROM `system_message_content` [ RunTime:0.056241s ] |
|||
[2022-01-04T21:34:19+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 7 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.056511s ] |
|||
[2022-01-04T21:34:19+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.060128s ] |
|||
[2022-01-04T21:34:19+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.059612s ] |
|||
[2022-01-04T21:34:19+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.056399s ] |
|||
[2022-01-04T21:34:19+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.060969s ] |
|||
[2022-01-04T21:34:19+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,209,210,211,26,192,205,198,206,207,208,200,201,202,203,204,3,11,189,212,216,217,218,219,220,213,214,215,221,222,223,224,225,226,227,228,229,230,232,231,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,253,254,255,256,257,258,4,14,199,190,191,197,248,249,250,251,252) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.055996s ] |
|||
[2022-01-04T21:34:19+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.065301s ] |
|||
[2022-01-04T21:34:19+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.055820s ] |
|||
[2022-01-04T21:34:19+08:00][sql] SELECT * FROM `system_message` WHERE ( `site_id` = 1 AND `type` = 1 AND `create_time` > 1620379101 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` ASC [ RunTime:0.055823s ] |
|||
[2022-01-04T21:34:19+08:00][sql] CONNECT:[ UseTime:0.106262s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2022-01-04T21:34:19+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.071280s ] |
|||
[2022-01-04T21:34:19+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.065017s ] |
|||
[2022-01-04T21:34:19+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.061526s ] |
|||
[2022-01-04T21:34:19+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.066266s ] |
|||
[2022-01-04T21:34:19+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.065318s ] |
|||
[2022-01-04T21:34:19+08:00][sql] SHOW FULL COLUMNS FROM `system_message_content` [ RunTime:0.064683s ] |
|||
[2022-01-04T21:34:19+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 7 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.065365s ] |
|||
[2022-01-04T21:34:19+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.063619s ] |
|||
[2022-01-04T21:34:19+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.063554s ] |
|||
[2022-01-04T21:34:19+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.061321s ] |
|||
[2022-01-04T21:34:19+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.068340s ] |
|||
[2022-01-04T21:34:19+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,209,210,211,26,192,205,198,206,207,208,200,201,202,203,204,3,11,189,212,216,217,218,219,220,213,214,215,221,222,223,224,225,226,227,228,229,230,232,231,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,253,254,255,256,257,258,4,14,199,190,191,197,248,249,250,251,252) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.063876s ] |
|||
[2022-01-04T21:34:19+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.064792s ] |
|||
[2022-01-04T21:34:19+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.062545s ] |
|||
[2022-01-04T21:34:19+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.062559s ] |
|||
[2022-01-04T21:35:20+08:00][sql] CONNECT:[ UseTime:0.106283s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2022-01-04T21:35:20+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.069198s ] |
|||
[2022-01-04T21:35:20+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.071850s ] |
|||
[2022-01-04T21:35:20+08:00][sql] SELECT * FROM `system_message` WHERE `receve_id` = 1 AND `type` = 1 ORDER BY `create_time` DESC LIMIT 1 [ RunTime:0.070078s ] |
|||
[2022-01-04T21:35:20+08:00][sql] SHOW FULL COLUMNS FROM `system_message_content` [ RunTime:0.069050s ] |
|||
[2022-01-04T21:35:20+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 7 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.058937s ] |
|||
[2022-01-04T21:35:20+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.061557s ] |
|||
[2022-01-04T21:35:20+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.065667s ] |
|||
[2022-01-04T21:35:20+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.058739s ] |
|||
[2022-01-04T21:35:20+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.059269s ] |
|||
[2022-01-04T21:35:20+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,209,210,211,26,192,205,198,206,207,208,200,201,202,203,204,3,11,189,212,216,217,218,219,220,213,214,215,221,222,223,224,225,226,227,228,229,230,232,231,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,253,254,255,256,257,258,4,14,199,190,191,197,248,249,250,251,252) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.068677s ] |
|||
[2022-01-04T21:35:20+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.061781s ] |
|||
[2022-01-04T21:35:20+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.066356s ] |
|||
[2022-01-04T21:35:20+08:00][sql] SELECT * FROM `system_message` WHERE ( `site_id` = 1 AND `type` = 1 AND `create_time` > 1620379101 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` ASC [ RunTime:0.072250s ] |
|||
[2022-01-04T21:35:20+08:00][sql] CONNECT:[ UseTime:0.103942s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2022-01-04T21:35:20+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.067002s ] |
|||
[2022-01-04T21:35:20+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.069357s ] |
|||
[2022-01-04T21:35:20+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.064657s ] |
|||
[2022-01-04T21:35:20+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.068692s ] |
|||
[2022-01-04T21:35:20+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.066379s ] |
|||
[2022-01-04T21:35:20+08:00][sql] SHOW FULL COLUMNS FROM `system_message_content` [ RunTime:0.064456s ] |
|||
[2022-01-04T21:35:20+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 7 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.071321s ] |
|||
[2022-01-04T21:35:20+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.067018s ] |
|||
[2022-01-04T21:35:20+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.066123s ] |
|||
[2022-01-04T21:35:20+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.065155s ] |
|||
[2022-01-04T21:35:20+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.066621s ] |
|||
[2022-01-04T21:35:20+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,209,210,211,26,192,205,198,206,207,208,200,201,202,203,204,3,11,189,212,216,217,218,219,220,213,214,215,221,222,223,224,225,226,227,228,229,230,232,231,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,253,254,255,256,257,258,4,14,199,190,191,197,248,249,250,251,252) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.067060s ] |
|||
[2022-01-04T21:35:20+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.064250s ] |
|||
[2022-01-04T21:35:20+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.070334s ] |
|||
[2022-01-04T21:35:20+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.066825s ] |
|||
[2022-01-04T21:36:28+08:00][sql] CONNECT:[ UseTime:0.089057s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2022-01-04T21:36:28+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.064880s ] |
|||
[2022-01-04T21:36:28+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.063204s ] |
|||
[2022-01-04T21:36:28+08:00][sql] SELECT * FROM `system_message` WHERE `receve_id` = 1 AND `type` = 1 ORDER BY `create_time` DESC LIMIT 1 [ RunTime:0.060335s ] |
|||
[2022-01-04T21:36:28+08:00][sql] SHOW FULL COLUMNS FROM `system_message_content` [ RunTime:0.058476s ] |
|||
[2022-01-04T21:36:28+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 7 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.059982s ] |
|||
[2022-01-04T21:36:28+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.059422s ] |
|||
[2022-01-04T21:36:28+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.060205s ] |
|||
[2022-01-04T21:36:28+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.059035s ] |
|||
[2022-01-04T21:36:28+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.059589s ] |
|||
[2022-01-04T21:36:28+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,209,210,211,26,192,205,198,206,207,208,200,201,202,203,204,3,11,189,212,216,217,218,219,220,213,214,215,221,222,223,224,225,226,227,228,229,230,232,231,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,253,254,255,256,257,258,4,14,199,190,191,197,248,249,250,251,252) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.066751s ] |
|||
[2022-01-04T21:36:28+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.058468s ] |
|||
[2022-01-04T21:36:28+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.063433s ] |
|||
[2022-01-04T21:36:28+08:00][sql] SELECT * FROM `system_message` WHERE ( `site_id` = 1 AND `type` = 1 AND `create_time` > 1620379101 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` ASC [ RunTime:0.058228s ] |
|||
[2022-01-04T21:36:28+08:00][sql] CONNECT:[ UseTime:0.076821s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2022-01-04T21:36:28+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.054125s ] |
|||
[2022-01-04T21:36:28+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.052879s ] |
|||
[2022-01-04T21:36:28+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.051170s ] |
|||
[2022-01-04T21:36:28+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.058968s ] |
|||
[2022-01-04T21:36:28+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.053760s ] |
|||
[2022-01-04T21:36:28+08:00][sql] SHOW FULL COLUMNS FROM `system_message_content` [ RunTime:0.050908s ] |
|||
[2022-01-04T21:36:28+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 7 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.051691s ] |
|||
[2022-01-04T21:36:28+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.053063s ] |
|||
[2022-01-04T21:36:28+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.056224s ] |
|||
[2022-01-04T21:36:28+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.057798s ] |
|||
[2022-01-04T21:36:28+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.065337s ] |
|||
[2022-01-04T21:36:28+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,209,210,211,26,192,205,198,206,207,208,200,201,202,203,204,3,11,189,212,216,217,218,219,220,213,214,215,221,222,223,224,225,226,227,228,229,230,232,231,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,253,254,255,256,257,258,4,14,199,190,191,197,248,249,250,251,252) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.052558s ] |
|||
[2022-01-04T21:36:28+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.051855s ] |
|||
[2022-01-04T21:36:28+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.054183s ] |
|||
[2022-01-04T21:36:28+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.051111s ] |
|||
[2022-01-04T21:37:29+08:00][sql] CONNECT:[ UseTime:0.097787s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2022-01-04T21:37:29+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.063717s ] |
|||
[2022-01-04T21:37:29+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.070001s ] |
|||
[2022-01-04T21:37:29+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.061429s ] |
|||
[2022-01-04T21:37:29+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.067640s ] |
|||
[2022-01-04T21:37:29+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.074891s ] |
|||
[2022-01-04T21:37:29+08:00][sql] SHOW FULL COLUMNS FROM `system_message_content` [ RunTime:0.062590s ] |
|||
[2022-01-04T21:37:29+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 7 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.062982s ] |
|||
[2022-01-04T21:37:29+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.072593s ] |
|||
[2022-01-04T21:37:29+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.061403s ] |
|||
[2022-01-04T21:37:29+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.059255s ] |
|||
[2022-01-04T21:37:29+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.061579s ] |
|||
[2022-01-04T21:37:29+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,209,210,211,26,192,205,198,206,207,208,200,201,202,203,204,3,11,189,212,216,217,218,219,220,213,214,215,221,222,223,224,225,226,227,228,229,230,232,231,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,253,254,255,256,257,258,4,14,199,190,191,197,248,249,250,251,252) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.067730s ] |
|||
[2022-01-04T21:37:29+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.063652s ] |
|||
[2022-01-04T21:37:29+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.059872s ] |
|||
[2022-01-04T21:37:29+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.059925s ] |
|||
[2022-01-04T21:37:29+08:00][sql] CONNECT:[ UseTime:0.094784s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2022-01-04T21:37:29+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.068593s ] |
|||
[2022-01-04T21:37:29+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.070090s ] |
|||
[2022-01-04T21:37:29+08:00][sql] SELECT * FROM `system_message` WHERE `receve_id` = 1 AND `type` = 1 ORDER BY `create_time` DESC LIMIT 1 [ RunTime:0.061845s ] |
|||
[2022-01-04T21:37:29+08:00][sql] SHOW FULL COLUMNS FROM `system_message_content` [ RunTime:0.067358s ] |
|||
[2022-01-04T21:37:29+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 7 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.293164s ] |
|||
[2022-01-04T21:37:29+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.059219s ] |
|||
[2022-01-04T21:37:29+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.060073s ] |
|||
[2022-01-04T21:37:29+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.059563s ] |
|||
[2022-01-04T21:37:29+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.060934s ] |
|||
[2022-01-04T21:37:29+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,209,210,211,26,192,205,198,206,207,208,200,201,202,203,204,3,11,189,212,216,217,218,219,220,213,214,215,221,222,223,224,225,226,227,228,229,230,232,231,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,253,254,255,256,257,258,4,14,199,190,191,197,248,249,250,251,252) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.065416s ] |
|||
[2022-01-04T21:37:29+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.064005s ] |
|||
[2022-01-04T21:37:29+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.057872s ] |
|||
[2022-01-04T21:37:29+08:00][sql] SELECT * FROM `system_message` WHERE ( `site_id` = 1 AND `type` = 1 AND `create_time` > 1620379101 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` ASC [ RunTime:0.060677s ] |
|||
[2022-01-04T21:38:30+08:00][sql] CONNECT:[ UseTime:0.096387s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2022-01-04T21:38:30+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.063595s ] |
|||
[2022-01-04T21:38:30+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.066781s ] |
|||
[2022-01-04T21:38:30+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.057189s ] |
|||
[2022-01-04T21:38:30+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.061802s ] |
|||
[2022-01-04T21:38:30+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.057372s ] |
|||
[2022-01-04T21:38:30+08:00][sql] SHOW FULL COLUMNS FROM `system_message_content` [ RunTime:0.060543s ] |
|||
[2022-01-04T21:38:30+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 7 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.054204s ] |
|||
[2022-01-04T21:38:30+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.056833s ] |
|||
[2022-01-04T21:38:30+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.056053s ] |
|||
[2022-01-04T21:38:30+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.055014s ] |
|||
[2022-01-04T21:38:30+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.056147s ] |
|||
[2022-01-04T21:38:30+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,209,210,211,26,192,205,198,206,207,208,200,201,202,203,204,3,11,189,212,216,217,218,219,220,213,214,215,221,222,223,224,225,226,227,228,229,230,232,231,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,253,254,255,256,257,258,4,14,199,190,191,197,248,249,250,251,252) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.062555s ] |
|||
[2022-01-04T21:38:30+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.069565s ] |
|||
[2022-01-04T21:38:30+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.056811s ] |
|||
[2022-01-04T21:38:30+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.055405s ] |
|||
[2022-01-04T21:38:30+08:00][sql] CONNECT:[ UseTime:0.117186s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2022-01-04T21:38:30+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.076662s ] |
|||
[2022-01-04T21:38:30+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.073682s ] |
|||
[2022-01-04T21:38:30+08:00][sql] SELECT * FROM `system_message` WHERE `receve_id` = 1 AND `type` = 1 ORDER BY `create_time` DESC LIMIT 1 [ RunTime:0.072686s ] |
|||
[2022-01-04T21:38:30+08:00][sql] SHOW FULL COLUMNS FROM `system_message_content` [ RunTime:0.077775s ] |
|||
[2022-01-04T21:38:30+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 7 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.074013s ] |
|||
[2022-01-04T21:38:30+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.074040s ] |
|||
[2022-01-04T21:38:30+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.071338s ] |
|||
[2022-01-04T21:38:30+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.076720s ] |
|||
[2022-01-04T21:38:30+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.071820s ] |
|||
[2022-01-04T21:38:30+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,209,210,211,26,192,205,198,206,207,208,200,201,202,203,204,3,11,189,212,216,217,218,219,220,213,214,215,221,222,223,224,225,226,227,228,229,230,232,231,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,253,254,255,256,257,258,4,14,199,190,191,197,248,249,250,251,252) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.075777s ] |
|||
[2022-01-04T21:38:30+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.073113s ] |
|||
[2022-01-04T21:38:30+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.077840s ] |
|||
[2022-01-04T21:38:30+08:00][sql] SELECT * FROM `system_message` WHERE ( `site_id` = 1 AND `type` = 1 AND `create_time` > 1620379101 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` ASC [ RunTime:0.072634s ] |
|||
[2022-01-04T21:39:42+08:00][sql] CONNECT:[ UseTime:0.093657s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2022-01-04T21:39:42+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.067172s ] |
|||
[2022-01-04T21:39:42+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.064293s ] |
|||
[2022-01-04T21:39:42+08:00][sql] SELECT * FROM `system_message` WHERE `receve_id` = 1 AND `type` = 1 ORDER BY `create_time` DESC LIMIT 1 [ RunTime:0.069414s ] |
|||
[2022-01-04T21:39:42+08:00][sql] SHOW FULL COLUMNS FROM `system_message_content` [ RunTime:0.063187s ] |
|||
[2022-01-04T21:39:42+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 7 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.071263s ] |
|||
[2022-01-04T21:39:42+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.064691s ] |
|||
[2022-01-04T21:39:42+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.066627s ] |
|||
[2022-01-04T21:39:42+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.068924s ] |
|||
[2022-01-04T21:39:42+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.064277s ] |
|||
[2022-01-04T21:39:42+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,209,210,211,26,192,205,198,206,207,208,200,201,202,203,204,3,11,189,212,216,217,218,219,220,213,214,215,221,222,223,224,225,226,227,228,229,230,232,231,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,253,254,255,256,257,258,4,14,199,190,191,197,248,249,250,251,252) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.067727s ] |
|||
[2022-01-04T21:39:42+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.061611s ] |
|||
[2022-01-04T21:39:42+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.073342s ] |
|||
[2022-01-04T21:39:42+08:00][sql] SELECT * FROM `system_message` WHERE ( `site_id` = 1 AND `type` = 1 AND `create_time` > 1620379101 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` ASC [ RunTime:0.064646s ] |
|||
[2022-01-04T21:39:42+08:00][sql] CONNECT:[ UseTime:0.104030s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2022-01-04T21:39:42+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.070947s ] |
|||
[2022-01-04T21:39:42+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.074724s ] |
|||
[2022-01-04T21:39:42+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.070035s ] |
|||
[2022-01-04T21:39:42+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.086398s ] |
|||
[2022-01-04T21:39:42+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.067966s ] |
|||
[2022-01-04T21:39:42+08:00][sql] SHOW FULL COLUMNS FROM `system_message_content` [ RunTime:0.069972s ] |
|||
[2022-01-04T21:39:42+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 7 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.069620s ] |
|||
[2022-01-04T21:39:42+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.068320s ] |
|||
[2022-01-04T21:39:42+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.069969s ] |
|||
[2022-01-04T21:39:42+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.069223s ] |
|||
[2022-01-04T21:39:42+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.080145s ] |
|||
[2022-01-04T21:39:42+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,209,210,211,26,192,205,198,206,207,208,200,201,202,203,204,3,11,189,212,216,217,218,219,220,213,214,215,221,222,223,224,225,226,227,228,229,230,232,231,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,253,254,255,256,257,258,4,14,199,190,191,197,248,249,250,251,252) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.073611s ] |
|||
[2022-01-04T21:39:42+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.069362s ] |
|||
[2022-01-04T21:39:42+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.068767s ] |
|||
[2022-01-04T21:39:42+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.068134s ] |
|||
[2022-01-04T21:40:43+08:00][sql] CONNECT:[ UseTime:0.085875s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2022-01-04T21:40:43+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.067250s ] |
|||
[2022-01-04T21:40:43+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.058426s ] |
|||
[2022-01-04T21:40:43+08:00][sql] SELECT * FROM `system_message` WHERE `receve_id` = 1 AND `type` = 1 ORDER BY `create_time` DESC LIMIT 1 [ RunTime:0.057405s ] |
|||
[2022-01-04T21:40:43+08:00][sql] SHOW FULL COLUMNS FROM `system_message_content` [ RunTime:0.057935s ] |
|||
[2022-01-04T21:40:43+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 7 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.055263s ] |
|||
[2022-01-04T21:40:43+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.060625s ] |
|||
[2022-01-04T21:40:43+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.059355s ] |
|||
[2022-01-04T21:40:43+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.053799s ] |
|||
[2022-01-04T21:40:43+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.056691s ] |
|||
[2022-01-04T21:40:43+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,209,210,211,26,192,205,198,206,207,208,200,201,202,203,204,3,11,189,212,216,217,218,219,220,213,214,215,221,222,223,224,225,226,227,228,229,230,232,231,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,253,254,255,256,257,258,4,14,199,190,191,197,248,249,250,251,252) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.060908s ] |
|||
[2022-01-04T21:40:43+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.059772s ] |
|||
[2022-01-04T21:40:43+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.054783s ] |
|||
[2022-01-04T21:40:43+08:00][sql] SELECT * FROM `system_message` WHERE ( `site_id` = 1 AND `type` = 1 AND `create_time` > 1620379101 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` ASC [ RunTime:0.057464s ] |
|||
[2022-01-04T21:40:44+08:00][sql] CONNECT:[ UseTime:0.094488s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2022-01-04T21:40:44+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.062946s ] |
|||
[2022-01-04T21:40:44+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.063162s ] |
|||
[2022-01-04T21:40:44+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.063504s ] |
|||
[2022-01-04T21:40:44+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.062665s ] |
|||
[2022-01-04T21:40:44+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.061051s ] |
|||
[2022-01-04T21:40:44+08:00][sql] SHOW FULL COLUMNS FROM `system_message_content` [ RunTime:0.060999s ] |
|||
[2022-01-04T21:40:44+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 7 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.060185s ] |
|||
[2022-01-04T21:40:44+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.062093s ] |
|||
[2022-01-04T21:40:44+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.065448s ] |
|||
[2022-01-04T21:40:44+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.060718s ] |
|||
[2022-01-04T21:40:44+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.059423s ] |
|||
[2022-01-04T21:40:44+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,209,210,211,26,192,205,198,206,207,208,200,201,202,203,204,3,11,189,212,216,217,218,219,220,213,214,215,221,222,223,224,225,226,227,228,229,230,232,231,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,253,254,255,256,257,258,4,14,199,190,191,197,248,249,250,251,252) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.065479s ] |
|||
[2022-01-04T21:40:44+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.058778s ] |
|||
[2022-01-04T21:40:44+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.062700s ] |
|||
[2022-01-04T21:40:44+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.063558s ] |
|||
[2022-01-04T21:41:44+08:00][sql] CONNECT:[ UseTime:0.096677s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2022-01-04T21:41:44+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.066147s ] |
|||
[2022-01-04T21:41:44+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.064113s ] |
|||
[2022-01-04T21:41:44+08:00][sql] SELECT * FROM `system_message` WHERE `receve_id` = 1 AND `type` = 1 ORDER BY `create_time` DESC LIMIT 1 [ RunTime:0.061474s ] |
|||
[2022-01-04T21:41:44+08:00][sql] SHOW FULL COLUMNS FROM `system_message_content` [ RunTime:0.070094s ] |
|||
[2022-01-04T21:41:44+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 7 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.063812s ] |
|||
[2022-01-04T21:41:44+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.065864s ] |
|||
[2022-01-04T21:41:44+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.069589s ] |
|||
[2022-01-04T21:41:44+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.063987s ] |
|||
[2022-01-04T21:41:44+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.066132s ] |
|||
[2022-01-04T21:41:44+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,209,210,211,26,192,205,198,206,207,208,200,201,202,203,204,3,11,189,212,216,217,218,219,220,213,214,215,221,222,223,224,225,226,227,228,229,230,232,231,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,253,254,255,256,257,258,4,14,199,190,191,197,248,249,250,251,252) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.068141s ] |
|||
[2022-01-04T21:41:44+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.067589s ] |
|||
[2022-01-04T21:41:44+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.067193s ] |
|||
[2022-01-04T21:41:44+08:00][sql] SELECT * FROM `system_message` WHERE ( `site_id` = 1 AND `type` = 1 AND `create_time` > 1620379101 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` ASC [ RunTime:0.062249s ] |
|||
[2022-01-04T21:41:44+08:00][sql] CONNECT:[ UseTime:0.091416s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2022-01-04T21:41:44+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.065471s ] |
|||
[2022-01-04T21:41:44+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.062306s ] |
|||
[2022-01-04T21:41:44+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.062163s ] |
|||
[2022-01-04T21:41:44+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.067927s ] |
|||
[2022-01-04T21:41:44+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.067615s ] |
|||
[2022-01-04T21:41:44+08:00][sql] SHOW FULL COLUMNS FROM `system_message_content` [ RunTime:0.065409s ] |
|||
[2022-01-04T21:41:44+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 7 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.073257s ] |
|||
[2022-01-04T21:41:44+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.062909s ] |
|||
[2022-01-04T21:41:44+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.065130s ] |
|||
[2022-01-04T21:41:44+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.067869s ] |
|||
[2022-01-04T21:41:44+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.070665s ] |
|||
[2022-01-04T21:41:44+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,209,210,211,26,192,205,198,206,207,208,200,201,202,203,204,3,11,189,212,216,217,218,219,220,213,214,215,221,222,223,224,225,226,227,228,229,230,232,231,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,253,254,255,256,257,258,4,14,199,190,191,197,248,249,250,251,252) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.067437s ] |
|||
[2022-01-04T21:41:44+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.063187s ] |
|||
[2022-01-04T21:41:44+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.062759s ] |
|||
[2022-01-04T21:41:44+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.063364s ] |
|||
[2022-01-04T21:42:45+08:00][sql] CONNECT:[ UseTime:0.088073s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2022-01-04T21:42:45+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.060529s ] |
|||
[2022-01-04T21:42:45+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.062969s ] |
|||
[2022-01-04T21:42:45+08:00][sql] SELECT * FROM `system_message` WHERE `receve_id` = 1 AND `type` = 1 ORDER BY `create_time` DESC LIMIT 1 [ RunTime:0.061725s ] |
|||
[2022-01-04T21:42:45+08:00][sql] SHOW FULL COLUMNS FROM `system_message_content` [ RunTime:0.064979s ] |
|||
[2022-01-04T21:42:45+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 7 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.057466s ] |
|||
[2022-01-04T21:42:45+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.058992s ] |
|||
[2022-01-04T21:42:45+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.058283s ] |
|||
[2022-01-04T21:42:45+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.060271s ] |
|||
[2022-01-04T21:42:45+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.065195s ] |
|||
[2022-01-04T21:42:45+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,209,210,211,26,192,205,198,206,207,208,200,201,202,203,204,3,11,189,212,216,217,218,219,220,213,214,215,221,222,223,224,225,226,227,228,229,230,232,231,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,253,254,255,256,257,258,4,14,199,190,191,197,248,249,250,251,252) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.075736s ] |
|||
[2022-01-04T21:42:45+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.062591s ] |
|||
[2022-01-04T21:42:45+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.064952s ] |
|||
[2022-01-04T21:42:45+08:00][sql] SELECT * FROM `system_message` WHERE ( `site_id` = 1 AND `type` = 1 AND `create_time` > 1620379101 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` ASC [ RunTime:0.067338s ] |
|||
[2022-01-04T21:42:45+08:00][sql] CONNECT:[ UseTime:0.090783s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2022-01-04T21:42:45+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.062269s ] |
|||
[2022-01-04T21:42:45+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.065329s ] |
|||
[2022-01-04T21:42:45+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.062181s ] |
|||
[2022-01-04T21:42:45+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.063752s ] |
|||
[2022-01-04T21:42:45+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.076276s ] |
|||
[2022-01-04T21:42:45+08:00][sql] SHOW FULL COLUMNS FROM `system_message_content` [ RunTime:0.061057s ] |
|||
[2022-01-04T21:42:45+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 7 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.060663s ] |
|||
[2022-01-04T21:42:45+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.062563s ] |
|||
[2022-01-04T21:42:45+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.059417s ] |
|||
[2022-01-04T21:42:45+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.061260s ] |
|||
[2022-01-04T21:42:45+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.068681s ] |
|||
[2022-01-04T21:42:45+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,209,210,211,26,192,205,198,206,207,208,200,201,202,203,204,3,11,189,212,216,217,218,219,220,213,214,215,221,222,223,224,225,226,227,228,229,230,232,231,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,253,254,255,256,257,258,4,14,199,190,191,197,248,249,250,251,252) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.063652s ] |
|||
[2022-01-04T21:42:45+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.060501s ] |
|||
[2022-01-04T21:42:45+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.069140s ] |
|||
[2022-01-04T21:42:45+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.061918s ] |
|||
[2022-01-04T21:43:46+08:00][sql] CONNECT:[ UseTime:0.100602s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2022-01-04T21:43:46+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.068659s ] |
|||
[2022-01-04T21:43:46+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.069557s ] |
|||
[2022-01-04T21:43:46+08:00][sql] SELECT * FROM `system_message` WHERE `receve_id` = 1 AND `type` = 1 ORDER BY `create_time` DESC LIMIT 1 [ RunTime:0.073639s ] |
|||
[2022-01-04T21:43:46+08:00][sql] SHOW FULL COLUMNS FROM `system_message_content` [ RunTime:0.081081s ] |
|||
[2022-01-04T21:43:46+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 7 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.059583s ] |
|||
[2022-01-04T21:43:46+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.078354s ] |
|||
[2022-01-04T21:43:46+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.059546s ] |
|||
[2022-01-04T21:43:46+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.061499s ] |
|||
[2022-01-04T21:43:46+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.069449s ] |
|||
[2022-01-04T21:43:46+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,209,210,211,26,192,205,198,206,207,208,200,201,202,203,204,3,11,189,212,216,217,218,219,220,213,214,215,221,222,223,224,225,226,227,228,229,230,232,231,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,253,254,255,256,257,258,4,14,199,190,191,197,248,249,250,251,252) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.071423s ] |
|||
[2022-01-04T21:43:46+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.064493s ] |
|||
[2022-01-04T21:43:46+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.062809s ] |
|||
[2022-01-04T21:43:46+08:00][sql] SELECT * FROM `system_message` WHERE ( `site_id` = 1 AND `type` = 1 AND `create_time` > 1620379101 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` ASC [ RunTime:0.059642s ] |
|||
[2022-01-04T21:43:46+08:00][sql] CONNECT:[ UseTime:0.100560s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2022-01-04T21:43:46+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.065348s ] |
|||
[2022-01-04T21:43:46+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.068654s ] |
|||
[2022-01-04T21:43:46+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.062901s ] |
|||
[2022-01-04T21:43:46+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.058592s ] |
|||
[2022-01-04T21:43:46+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.067383s ] |
|||
[2022-01-04T21:43:46+08:00][sql] SHOW FULL COLUMNS FROM `system_message_content` [ RunTime:0.055342s ] |
|||
[2022-01-04T21:43:46+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 7 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.054884s ] |
|||
[2022-01-04T21:43:46+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.059522s ] |
|||
[2022-01-04T21:43:46+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.059354s ] |
|||
[2022-01-04T21:43:46+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.058520s ] |
|||
[2022-01-04T21:43:46+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.056539s ] |
|||
[2022-01-04T21:43:46+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,209,210,211,26,192,205,198,206,207,208,200,201,202,203,204,3,11,189,212,216,217,218,219,220,213,214,215,221,222,223,224,225,226,227,228,229,230,232,231,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,253,254,255,256,257,258,4,14,199,190,191,197,248,249,250,251,252) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.061773s ] |
|||
[2022-01-04T21:43:46+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.057150s ] |
|||
[2022-01-04T21:43:46+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.057883s ] |
|||
[2022-01-04T21:43:46+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.054835s ] |
|||
[2022-01-04T21:44:47+08:00][sql] CONNECT:[ UseTime:0.143164s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2022-01-04T21:44:47+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.079907s ] |
|||
[2022-01-04T21:44:47+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.065197s ] |
|||
[2022-01-04T21:44:47+08:00][sql] SELECT * FROM `system_message` WHERE `receve_id` = 1 AND `type` = 1 ORDER BY `create_time` DESC LIMIT 1 [ RunTime:0.068315s ] |
|||
[2022-01-04T21:44:47+08:00][sql] SHOW FULL COLUMNS FROM `system_message_content` [ RunTime:0.064417s ] |
|||
[2022-01-04T21:44:47+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 7 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.066385s ] |
|||
[2022-01-04T21:44:47+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.075800s ] |
|||
[2022-01-04T21:44:47+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.063700s ] |
|||
[2022-01-04T21:44:47+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.060093s ] |
|||
[2022-01-04T21:44:47+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.080058s ] |
|||
[2022-01-04T21:44:47+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,209,210,211,26,192,205,198,206,207,208,200,201,202,203,204,3,11,189,212,216,217,218,219,220,213,214,215,221,222,223,224,225,226,227,228,229,230,232,231,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,253,254,255,256,257,258,4,14,199,190,191,197,248,249,250,251,252) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.070124s ] |
|||
[2022-01-04T21:44:47+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.077041s ] |
|||
[2022-01-04T21:44:47+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.083220s ] |
|||
[2022-01-04T21:44:47+08:00][sql] SELECT * FROM `system_message` WHERE ( `site_id` = 1 AND `type` = 1 AND `create_time` > 1620379101 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` ASC [ RunTime:0.068035s ] |
|||
[2022-01-04T21:44:47+08:00][sql] CONNECT:[ UseTime:0.144187s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2022-01-04T21:44:47+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.078994s ] |
|||
[2022-01-04T21:44:47+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.074025s ] |
|||
[2022-01-04T21:44:47+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.071017s ] |
|||
[2022-01-04T21:44:47+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.070548s ] |
|||
[2022-01-04T21:44:47+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.094583s ] |
|||
[2022-01-04T21:44:47+08:00][sql] SHOW FULL COLUMNS FROM `system_message_content` [ RunTime:0.077149s ] |
|||
[2022-01-04T21:44:47+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 7 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.073312s ] |
|||
[2022-01-04T21:44:47+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.084976s ] |
|||
[2022-01-04T21:44:47+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.083626s ] |
|||
[2022-01-04T21:44:47+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.071628s ] |
|||
[2022-01-04T21:44:47+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.099159s ] |
|||
[2022-01-04T21:44:47+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,209,210,211,26,192,205,198,206,207,208,200,201,202,203,204,3,11,189,212,216,217,218,219,220,213,214,215,221,222,223,224,225,226,227,228,229,230,232,231,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,253,254,255,256,257,258,4,14,199,190,191,197,248,249,250,251,252) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.096285s ] |
|||
[2022-01-04T21:44:47+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.070971s ] |
|||
[2022-01-04T21:44:47+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.067654s ] |
|||
[2022-01-04T21:44:47+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.067958s ] |
|||
[2022-01-04T21:45:48+08:00][sql] CONNECT:[ UseTime:0.072654s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2022-01-04T21:45:48+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.052902s ] |
|||
[2022-01-04T21:45:48+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.062447s ] |
|||
[2022-01-04T21:45:48+08:00][sql] SELECT * FROM `system_message` WHERE `receve_id` = 1 AND `type` = 1 ORDER BY `create_time` DESC LIMIT 1 [ RunTime:0.046609s ] |
|||
[2022-01-04T21:45:48+08:00][sql] SHOW FULL COLUMNS FROM `system_message_content` [ RunTime:0.052323s ] |
|||
[2022-01-04T21:45:48+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 7 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.046886s ] |
|||
[2022-01-04T21:45:48+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.045678s ] |
|||
[2022-01-04T21:45:48+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.047063s ] |
|||
[2022-01-04T21:45:48+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.056351s ] |
|||
[2022-01-04T21:45:48+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.049741s ] |
|||
[2022-01-04T21:45:48+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,209,210,211,26,192,205,198,206,207,208,200,201,202,203,204,3,11,189,212,216,217,218,219,220,213,214,215,221,222,223,224,225,226,227,228,229,230,232,231,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,253,254,255,256,257,258,4,14,199,190,191,197,248,249,250,251,252) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.058137s ] |
|||
[2022-01-04T21:45:48+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.051222s ] |
|||
[2022-01-04T21:45:48+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.049220s ] |
|||
[2022-01-04T21:45:48+08:00][sql] SELECT * FROM `system_message` WHERE ( `site_id` = 1 AND `type` = 1 AND `create_time` > 1620379101 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` ASC [ RunTime:0.049348s ] |
|||
[2022-01-04T21:45:48+08:00][sql] CONNECT:[ UseTime:0.096695s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2022-01-04T21:45:48+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.065260s ] |
|||
[2022-01-04T21:45:48+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.066921s ] |
|||
[2022-01-04T21:45:48+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.066774s ] |
|||
[2022-01-04T21:45:48+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.065649s ] |
|||
[2022-01-04T21:45:48+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.065880s ] |
|||
[2022-01-04T21:45:48+08:00][sql] SHOW FULL COLUMNS FROM `system_message_content` [ RunTime:0.068992s ] |
|||
[2022-01-04T21:45:48+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 7 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.066165s ] |
|||
[2022-01-04T21:45:48+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.070088s ] |
|||
[2022-01-04T21:45:48+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.065472s ] |
|||
[2022-01-04T21:45:48+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.064903s ] |
|||
[2022-01-04T21:45:48+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.065929s ] |
|||
[2022-01-04T21:45:48+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,209,210,211,26,192,205,198,206,207,208,200,201,202,203,204,3,11,189,212,216,217,218,219,220,213,214,215,221,222,223,224,225,226,227,228,229,230,232,231,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,253,254,255,256,257,258,4,14,199,190,191,197,248,249,250,251,252) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.068325s ] |
|||
[2022-01-04T21:45:48+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.066224s ] |
|||
[2022-01-04T21:45:48+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.067057s ] |
|||
[2022-01-04T21:45:48+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.064398s ] |
|||
[2022-01-04T21:46:49+08:00][sql] CONNECT:[ UseTime:0.071263s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2022-01-04T21:46:49+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.053535s ] |
|||
[2022-01-04T21:46:49+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.049440s ] |
|||
[2022-01-04T21:46:49+08:00][sql] SELECT * FROM `system_message` WHERE `receve_id` = 1 AND `type` = 1 ORDER BY `create_time` DESC LIMIT 1 [ RunTime:0.057534s ] |
|||
[2022-01-04T21:46:49+08:00][sql] SHOW FULL COLUMNS FROM `system_message_content` [ RunTime:0.048076s ] |
|||
[2022-01-04T21:46:49+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 7 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.044775s ] |
|||
[2022-01-04T21:46:49+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.049475s ] |
|||
[2022-01-04T21:46:49+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.054838s ] |
|||
[2022-01-04T21:46:49+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.047250s ] |
|||
[2022-01-04T21:46:49+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.053776s ] |
|||
[2022-01-04T21:46:49+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,209,210,211,26,192,205,198,206,207,208,200,201,202,203,204,3,11,189,212,216,217,218,219,220,213,214,215,221,222,223,224,225,226,227,228,229,230,232,231,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,253,254,255,256,257,258,4,14,199,190,191,197,248,249,250,251,252) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.053231s ] |
|||
[2022-01-04T21:46:49+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.047513s ] |
|||
[2022-01-04T21:46:49+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.056681s ] |
|||
[2022-01-04T21:46:49+08:00][sql] SELECT * FROM `system_message` WHERE ( `site_id` = 1 AND `type` = 1 AND `create_time` > 1620379101 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` ASC [ RunTime:0.048718s ] |
|||
[2022-01-04T21:46:49+08:00][sql] CONNECT:[ UseTime:0.106342s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2022-01-04T21:46:49+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.067397s ] |
|||
[2022-01-04T21:46:49+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.064105s ] |
|||
[2022-01-04T21:46:49+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.065732s ] |
|||
[2022-01-04T21:46:49+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.062598s ] |
|||
[2022-01-04T21:46:49+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.072534s ] |
|||
[2022-01-04T21:46:49+08:00][sql] SHOW FULL COLUMNS FROM `system_message_content` [ RunTime:0.067640s ] |
|||
[2022-01-04T21:46:49+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 7 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.067206s ] |
|||
[2022-01-04T21:46:49+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.065154s ] |
|||
[2022-01-04T21:46:49+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.066236s ] |
|||
[2022-01-04T21:46:49+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.065081s ] |
|||
[2022-01-04T21:46:49+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.070563s ] |
|||
[2022-01-04T21:46:49+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,209,210,211,26,192,205,198,206,207,208,200,201,202,203,204,3,11,189,212,216,217,218,219,220,213,214,215,221,222,223,224,225,226,227,228,229,230,232,231,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,253,254,255,256,257,258,4,14,199,190,191,197,248,249,250,251,252) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.070455s ] |
|||
[2022-01-04T21:46:49+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.062380s ] |
|||
[2022-01-04T21:46:49+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.063577s ] |
|||
[2022-01-04T21:46:49+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.067536s ] |
|||
[2022-01-04T21:47:50+08:00][sql] CONNECT:[ UseTime:0.105910s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2022-01-04T21:47:50+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.071417s ] |
|||
[2022-01-04T21:47:50+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.069407s ] |
|||
[2022-01-04T21:47:50+08:00][sql] SELECT * FROM `system_message` WHERE `receve_id` = 1 AND `type` = 1 ORDER BY `create_time` DESC LIMIT 1 [ RunTime:0.070551s ] |
|||
[2022-01-04T21:47:50+08:00][sql] SHOW FULL COLUMNS FROM `system_message_content` [ RunTime:0.070919s ] |
|||
[2022-01-04T21:47:50+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 7 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.077010s ] |
|||
[2022-01-04T21:47:50+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.074976s ] |
|||
[2022-01-04T21:47:50+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.072348s ] |
|||
[2022-01-04T21:47:50+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.069517s ] |
|||
[2022-01-04T21:47:50+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.072562s ] |
|||
[2022-01-04T21:47:50+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,209,210,211,26,192,205,198,206,207,208,200,201,202,203,204,3,11,189,212,216,217,218,219,220,213,214,215,221,222,223,224,225,226,227,228,229,230,232,231,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,253,254,255,256,257,258,4,14,199,190,191,197,248,249,250,251,252) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.154614s ] |
|||
[2022-01-04T21:47:50+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.069298s ] |
|||
[2022-01-04T21:47:50+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.070558s ] |
|||
[2022-01-04T21:47:50+08:00][sql] SELECT * FROM `system_message` WHERE ( `site_id` = 1 AND `type` = 1 AND `create_time` > 1620379101 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` ASC [ RunTime:0.076359s ] |
|||
[2022-01-04T21:47:50+08:00][sql] CONNECT:[ UseTime:0.095940s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2022-01-04T21:47:50+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.075994s ] |
|||
[2022-01-04T21:47:50+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.068931s ] |
|||
[2022-01-04T21:47:50+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.061057s ] |
|||
[2022-01-04T21:47:50+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.063629s ] |
|||
[2022-01-04T21:47:50+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.069865s ] |
|||
[2022-01-04T21:47:50+08:00][sql] SHOW FULL COLUMNS FROM `system_message_content` [ RunTime:0.070068s ] |
|||
[2022-01-04T21:47:50+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 7 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.061639s ] |
|||
[2022-01-04T21:47:50+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.069554s ] |
|||
[2022-01-04T21:47:50+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.060064s ] |
|||
[2022-01-04T21:47:50+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.071079s ] |
|||
[2022-01-04T21:47:50+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.085595s ] |
|||
[2022-01-04T21:47:50+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,209,210,211,26,192,205,198,206,207,208,200,201,202,203,204,3,11,189,212,216,217,218,219,220,213,214,215,221,222,223,224,225,226,227,228,229,230,232,231,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,253,254,255,256,257,258,4,14,199,190,191,197,248,249,250,251,252) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.073581s ] |
|||
[2022-01-04T21:47:50+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.071454s ] |
|||
[2022-01-04T21:47:50+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.071956s ] |
|||
[2022-01-04T21:47:50+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.073888s ] |
|||
[2022-01-04T21:48:54+08:00][sql] CONNECT:[ UseTime:0.092065s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2022-01-04T21:48:54+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.058008s ] |
|||
[2022-01-04T21:48:54+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.059937s ] |
|||
[2022-01-04T21:48:54+08:00][sql] SELECT * FROM `system_message` WHERE `receve_id` = 1 AND `type` = 1 ORDER BY `create_time` DESC LIMIT 1 [ RunTime:0.062469s ] |
|||
[2022-01-04T21:48:54+08:00][sql] SHOW FULL COLUMNS FROM `system_message_content` [ RunTime:0.067580s ] |
|||
[2022-01-04T21:48:54+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 7 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.060446s ] |
|||
[2022-01-04T21:48:54+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.065331s ] |
|||
[2022-01-04T21:48:54+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.089294s ] |
|||
[2022-01-04T21:48:54+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.056828s ] |
|||
[2022-01-04T21:48:54+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.061008s ] |
|||
[2022-01-04T21:48:54+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,209,210,211,26,192,205,198,206,207,208,200,201,202,203,204,3,11,189,212,216,217,218,219,220,213,214,215,221,222,223,224,225,226,227,228,229,230,232,231,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,253,254,255,256,257,258,4,14,199,190,191,197,248,249,250,251,252) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.058544s ] |
|||
[2022-01-04T21:48:54+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.061471s ] |
|||
[2022-01-04T21:48:54+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.063009s ] |
|||
[2022-01-04T21:48:54+08:00][sql] SELECT * FROM `system_message` WHERE ( `site_id` = 1 AND `type` = 1 AND `create_time` > 1620379101 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` ASC [ RunTime:0.066748s ] |
|||
[2022-01-04T21:48:54+08:00][sql] CONNECT:[ UseTime:0.082778s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2022-01-04T21:48:54+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.053028s ] |
|||
[2022-01-04T21:48:54+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.053068s ] |
|||
[2022-01-04T21:48:54+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.054221s ] |
|||
[2022-01-04T21:48:54+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.050782s ] |
|||
[2022-01-04T21:48:54+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.052676s ] |
|||
[2022-01-04T21:48:54+08:00][sql] SHOW FULL COLUMNS FROM `system_message_content` [ RunTime:0.081644s ] |
|||
[2022-01-04T21:48:54+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 7 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.059173s ] |
|||
[2022-01-04T21:48:54+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.065278s ] |
|||
[2022-01-04T21:48:54+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.051427s ] |
|||
[2022-01-04T21:48:54+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.059044s ] |
|||
[2022-01-04T21:48:54+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.051143s ] |
|||
[2022-01-04T21:48:54+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,209,210,211,26,192,205,198,206,207,208,200,201,202,203,204,3,11,189,212,216,217,218,219,220,213,214,215,221,222,223,224,225,226,227,228,229,230,232,231,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,253,254,255,256,257,258,4,14,199,190,191,197,248,249,250,251,252) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.061921s ] |
|||
[2022-01-04T21:48:54+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.051178s ] |
|||
[2022-01-04T21:48:54+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.050754s ] |
|||
[2022-01-04T21:48:54+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.051669s ] |
|||
[2022-01-04T21:49:54+08:00][sql] CONNECT:[ UseTime:0.080731s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2022-01-04T21:49:54+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.056122s ] |
|||
[2022-01-04T21:49:54+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.054398s ] |
|||
[2022-01-04T21:49:54+08:00][sql] SELECT * FROM `system_message` WHERE `receve_id` = 1 AND `type` = 1 ORDER BY `create_time` DESC LIMIT 1 [ RunTime:0.054988s ] |
|||
[2022-01-04T21:49:54+08:00][sql] SHOW FULL COLUMNS FROM `system_message_content` [ RunTime:0.057242s ] |
|||
[2022-01-04T21:49:54+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 7 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.054757s ] |
|||
[2022-01-04T21:49:54+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.057234s ] |
|||
[2022-01-04T21:49:54+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.060416s ] |
|||
[2022-01-04T21:49:54+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.054307s ] |
|||
[2022-01-04T21:49:54+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.054430s ] |
|||
[2022-01-04T21:49:54+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,209,210,211,26,192,205,198,206,207,208,200,201,202,203,204,3,11,189,212,216,217,218,219,220,213,214,215,221,222,223,224,225,226,227,228,229,230,232,231,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,253,254,255,256,257,258,4,14,199,190,191,197,248,249,250,251,252) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.062021s ] |
|||
[2022-01-04T21:49:54+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.054479s ] |
|||
[2022-01-04T21:49:54+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.054166s ] |
|||
[2022-01-04T21:49:54+08:00][sql] SELECT * FROM `system_message` WHERE ( `site_id` = 1 AND `type` = 1 AND `create_time` > 1620379101 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` ASC [ RunTime:0.058341s ] |
|||
[2022-01-04T21:49:54+08:00][sql] CONNECT:[ UseTime:0.089003s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2022-01-04T21:49:54+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.065314s ] |
|||
[2022-01-04T21:49:54+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.056727s ] |
|||
[2022-01-04T21:49:54+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.055876s ] |
|||
[2022-01-04T21:49:54+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.057286s ] |
|||
[2022-01-04T21:49:54+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.058948s ] |
|||
[2022-01-04T21:49:54+08:00][sql] SHOW FULL COLUMNS FROM `system_message_content` [ RunTime:0.057490s ] |
|||
[2022-01-04T21:49:54+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 7 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.057747s ] |
|||
[2022-01-04T21:49:54+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.057513s ] |
|||
[2022-01-04T21:49:54+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.056200s ] |
|||
[2022-01-04T21:49:54+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.055151s ] |
|||
[2022-01-04T21:49:54+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.058166s ] |
|||
[2022-01-04T21:49:54+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,209,210,211,26,192,205,198,206,207,208,200,201,202,203,204,3,11,189,212,216,217,218,219,220,213,214,215,221,222,223,224,225,226,227,228,229,230,232,231,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,253,254,255,256,257,258,4,14,199,190,191,197,248,249,250,251,252) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.060080s ] |
|||
[2022-01-04T21:49:54+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.057366s ] |
|||
[2022-01-04T21:49:54+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.056277s ] |
|||
[2022-01-04T21:49:54+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.055586s ] |
|||
[2022-01-04T21:50:54+08:00][sql] CONNECT:[ UseTime:0.081495s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2022-01-04T21:50:54+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.050502s ] |
|||
[2022-01-04T21:50:54+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.051318s ] |
|||
[2022-01-04T21:50:54+08:00][sql] SELECT * FROM `system_message` WHERE `receve_id` = 1 AND `type` = 1 ORDER BY `create_time` DESC LIMIT 1 [ RunTime:0.057035s ] |
|||
[2022-01-04T21:50:54+08:00][sql] SHOW FULL COLUMNS FROM `system_message_content` [ RunTime:0.052324s ] |
|||
[2022-01-04T21:50:54+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 7 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.050404s ] |
|||
[2022-01-04T21:50:54+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.049900s ] |
|||
[2022-01-04T21:50:54+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.051184s ] |
|||
[2022-01-04T21:50:54+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.049356s ] |
|||
[2022-01-04T21:50:54+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.078606s ] |
|||
[2022-01-04T21:50:54+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,209,210,211,26,192,205,198,206,207,208,200,201,202,203,204,3,11,189,212,216,217,218,219,220,213,214,215,221,222,223,224,225,226,227,228,229,230,232,231,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,253,254,255,256,257,258,4,14,199,190,191,197,248,249,250,251,252) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.052902s ] |
|||
[2022-01-04T21:50:54+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.056254s ] |
|||
[2022-01-04T21:50:54+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.049215s ] |
|||
[2022-01-04T21:50:54+08:00][sql] SELECT * FROM `system_message` WHERE ( `site_id` = 1 AND `type` = 1 AND `create_time` > 1620379101 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` ASC [ RunTime:0.048773s ] |
|||
[2022-01-04T21:50:54+08:00][sql] CONNECT:[ UseTime:0.069765s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2022-01-04T21:50:54+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.048529s ] |
|||
[2022-01-04T21:50:54+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.047066s ] |
|||
[2022-01-04T21:50:54+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.052062s ] |
|||
[2022-01-04T21:50:54+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.049619s ] |
|||
[2022-01-04T21:50:54+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.045871s ] |
|||
[2022-01-04T21:50:54+08:00][sql] SHOW FULL COLUMNS FROM `system_message_content` [ RunTime:0.047102s ] |
|||
[2022-01-04T21:50:54+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 7 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.047099s ] |
|||
[2022-01-04T21:50:54+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.051495s ] |
|||
[2022-01-04T21:50:54+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.084541s ] |
|||
[2022-01-04T21:50:54+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.046231s ] |
|||
[2022-01-04T21:50:54+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.049440s ] |
|||
[2022-01-04T21:50:54+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,209,210,211,26,192,205,198,206,207,208,200,201,202,203,204,3,11,189,212,216,217,218,219,220,213,214,215,221,222,223,224,225,226,227,228,229,230,232,231,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,253,254,255,256,257,258,4,14,199,190,191,197,248,249,250,251,252) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.051294s ] |
|||
[2022-01-04T21:50:54+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.050530s ] |
|||
[2022-01-04T21:50:54+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.045855s ] |
|||
[2022-01-04T21:50:54+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.045524s ] |
|||
[2022-01-04T21:51:54+08:00][sql] CONNECT:[ UseTime:0.098290s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2022-01-04T21:51:54+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.078657s ] |
|||
[2022-01-04T21:51:54+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.063213s ] |
|||
[2022-01-04T21:51:54+08:00][sql] SELECT * FROM `system_message` WHERE `receve_id` = 1 AND `type` = 1 ORDER BY `create_time` DESC LIMIT 1 [ RunTime:0.067222s ] |
|||
[2022-01-04T21:51:54+08:00][sql] SHOW FULL COLUMNS FROM `system_message_content` [ RunTime:0.067864s ] |
|||
[2022-01-04T21:51:54+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 7 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.062780s ] |
|||
[2022-01-04T21:51:54+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.068920s ] |
|||
[2022-01-04T21:51:54+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.068256s ] |
|||
[2022-01-04T21:51:54+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.062937s ] |
|||
[2022-01-04T21:51:54+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.070778s ] |
|||
[2022-01-04T21:51:54+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,209,210,211,26,192,205,198,206,207,208,200,201,202,203,204,3,11,189,212,216,217,218,219,220,213,214,215,221,222,223,224,225,226,227,228,229,230,232,231,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,253,254,255,256,257,258,4,14,199,190,191,197,248,249,250,251,252) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.068087s ] |
|||
[2022-01-04T21:51:54+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.063226s ] |
|||
[2022-01-04T21:51:54+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.065011s ] |
|||
[2022-01-04T21:51:54+08:00][sql] SELECT * FROM `system_message` WHERE ( `site_id` = 1 AND `type` = 1 AND `create_time` > 1620379101 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` ASC [ RunTime:0.065536s ] |
|||
[2022-01-04T21:51:54+08:00][sql] CONNECT:[ UseTime:0.108427s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2022-01-04T21:51:54+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.069903s ] |
|||
[2022-01-04T21:51:54+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.066909s ] |
|||
[2022-01-04T21:51:54+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.067032s ] |
|||
[2022-01-04T21:51:54+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.066299s ] |
|||
[2022-01-04T21:51:54+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.064561s ] |
|||
[2022-01-04T21:51:54+08:00][sql] SHOW FULL COLUMNS FROM `system_message_content` [ RunTime:0.068276s ] |
|||
[2022-01-04T21:51:54+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 7 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.069768s ] |
|||
[2022-01-04T21:51:54+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.067347s ] |
|||
[2022-01-04T21:51:54+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.067782s ] |
|||
[2022-01-04T21:51:54+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.065188s ] |
|||
[2022-01-04T21:51:54+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.066729s ] |
|||
[2022-01-04T21:51:54+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,209,210,211,26,192,205,198,206,207,208,200,201,202,203,204,3,11,189,212,216,217,218,219,220,213,214,215,221,222,223,224,225,226,227,228,229,230,232,231,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,253,254,255,256,257,258,4,14,199,190,191,197,248,249,250,251,252) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.072239s ] |
|||
[2022-01-04T21:51:54+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.066000s ] |
|||
[2022-01-04T21:51:54+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.065895s ] |
|||
[2022-01-04T21:51:54+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.064862s ] |
|||
[2022-01-04T21:52:58+08:00][sql] CONNECT:[ UseTime:0.094220s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2022-01-04T21:52:58+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.063059s ] |
|||
[2022-01-04T21:52:58+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.062826s ] |
|||
[2022-01-04T21:52:58+08:00][sql] SELECT * FROM `system_message` WHERE `receve_id` = 1 AND `type` = 1 ORDER BY `create_time` DESC LIMIT 1 [ RunTime:0.063306s ] |
|||
[2022-01-04T21:52:58+08:00][sql] SHOW FULL COLUMNS FROM `system_message_content` [ RunTime:0.066701s ] |
|||
[2022-01-04T21:52:58+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 7 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.063688s ] |
|||
[2022-01-04T21:52:58+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.065336s ] |
|||
[2022-01-04T21:52:58+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.069040s ] |
|||
[2022-01-04T21:52:58+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.068548s ] |
|||
[2022-01-04T21:52:58+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.063066s ] |
|||
[2022-01-04T21:52:58+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,209,210,211,26,192,205,198,206,207,208,200,201,202,203,204,3,11,189,212,216,217,218,219,220,213,214,215,221,222,223,224,225,226,227,228,229,230,232,231,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,253,254,255,256,257,258,4,14,199,190,191,197,248,249,250,251,252) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.072826s ] |
|||
[2022-01-04T21:52:58+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.069420s ] |
|||
[2022-01-04T21:52:58+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.064035s ] |
|||
[2022-01-04T21:52:58+08:00][sql] SELECT * FROM `system_message` WHERE ( `site_id` = 1 AND `type` = 1 AND `create_time` > 1620379101 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` ASC [ RunTime:0.061836s ] |
|||
[2022-01-04T21:52:58+08:00][sql] CONNECT:[ UseTime:0.084121s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2022-01-04T21:52:58+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.061686s ] |
|||
[2022-01-04T21:52:58+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.056781s ] |
|||
[2022-01-04T21:52:58+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.056501s ] |
|||
[2022-01-04T21:52:58+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.055744s ] |
|||
[2022-01-04T21:52:58+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.059888s ] |
|||
[2022-01-04T21:52:58+08:00][sql] SHOW FULL COLUMNS FROM `system_message_content` [ RunTime:0.056362s ] |
|||
[2022-01-04T21:52:58+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 7 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.055897s ] |
|||
[2022-01-04T21:52:58+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.058225s ] |
|||
[2022-01-04T21:52:58+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.055842s ] |
|||
[2022-01-04T21:52:58+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.063097s ] |
|||
[2022-01-04T21:52:58+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.057589s ] |
|||
[2022-01-04T21:52:58+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,209,210,211,26,192,205,198,206,207,208,200,201,202,203,204,3,11,189,212,216,217,218,219,220,213,214,215,221,222,223,224,225,226,227,228,229,230,232,231,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,253,254,255,256,257,258,4,14,199,190,191,197,248,249,250,251,252) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.060338s ] |
|||
[2022-01-04T21:52:58+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.059975s ] |
|||
[2022-01-04T21:52:58+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.057365s ] |
|||
[2022-01-04T21:52:58+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.058385s ] |
|||
[2022-01-04T21:53:54+08:00][sql] CONNECT:[ UseTime:0.102575s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2022-01-04T21:53:54+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.071387s ] |
|||
[2022-01-04T21:53:54+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.068683s ] |
|||
[2022-01-04T21:53:54+08:00][sql] SELECT * FROM `system_message` WHERE `receve_id` = 1 AND `type` = 1 ORDER BY `create_time` DESC LIMIT 1 [ RunTime:0.069583s ] |
|||
[2022-01-04T21:53:54+08:00][sql] SHOW FULL COLUMNS FROM `system_message_content` [ RunTime:0.080039s ] |
|||
[2022-01-04T21:53:54+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 7 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.074355s ] |
|||
[2022-01-04T21:53:54+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.067963s ] |
|||
[2022-01-04T21:53:54+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.067691s ] |
|||
[2022-01-04T21:53:54+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.067825s ] |
|||
[2022-01-04T21:53:54+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.069070s ] |
|||
[2022-01-04T21:53:54+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,209,210,211,26,192,205,198,206,207,208,200,201,202,203,204,3,11,189,212,216,217,218,219,220,213,214,215,221,222,223,224,225,226,227,228,229,230,232,231,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,253,254,255,256,257,258,4,14,199,190,191,197,248,249,250,251,252) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.072448s ] |
|||
[2022-01-04T21:53:54+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.069347s ] |
|||
[2022-01-04T21:53:54+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.068601s ] |
|||
[2022-01-04T21:53:54+08:00][sql] SELECT * FROM `system_message` WHERE ( `site_id` = 1 AND `type` = 1 AND `create_time` > 1620379101 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` ASC [ RunTime:0.070401s ] |
|||
[2022-01-04T21:53:54+08:00][sql] CONNECT:[ UseTime:0.094597s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2022-01-04T21:53:54+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.068209s ] |
|||
[2022-01-04T21:53:54+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.069405s ] |
|||
[2022-01-04T21:53:54+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.062711s ] |
|||
[2022-01-04T21:53:54+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.064779s ] |
|||
[2022-01-04T21:53:54+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.069815s ] |
|||
[2022-01-04T21:53:54+08:00][sql] SHOW FULL COLUMNS FROM `system_message_content` [ RunTime:0.063094s ] |
|||
[2022-01-04T21:53:54+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 7 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.068729s ] |
|||
[2022-01-04T21:53:54+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.063629s ] |
|||
[2022-01-04T21:53:54+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.064099s ] |
|||
[2022-01-04T21:53:54+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.064368s ] |
|||
[2022-01-04T21:53:54+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.065480s ] |
|||
[2022-01-04T21:53:54+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,209,210,211,26,192,205,198,206,207,208,200,201,202,203,204,3,11,189,212,216,217,218,219,220,213,214,215,221,222,223,224,225,226,227,228,229,230,232,231,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,253,254,255,256,257,258,4,14,199,190,191,197,248,249,250,251,252) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.069527s ] |
|||
[2022-01-04T21:53:54+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.065880s ] |
|||
[2022-01-04T21:53:54+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.063352s ] |
|||
[2022-01-04T21:53:54+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.067443s ] |
|||
[2022-01-04T21:54:54+08:00][sql] CONNECT:[ UseTime:0.077027s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2022-01-04T21:54:54+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.213441s ] |
|||
[2022-01-04T21:54:54+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.066454s ] |
|||
[2022-01-04T21:54:54+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.051538s ] |
|||
[2022-01-04T21:54:54+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.049668s ] |
|||
[2022-01-04T21:54:54+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.051751s ] |
|||
[2022-01-04T21:54:54+08:00][sql] SHOW FULL COLUMNS FROM `system_message_content` [ RunTime:0.051105s ] |
|||
[2022-01-04T21:54:54+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 7 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.048949s ] |
|||
[2022-01-04T21:54:54+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.052015s ] |
|||
[2022-01-04T21:54:54+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.052440s ] |
|||
[2022-01-04T21:54:54+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.051487s ] |
|||
[2022-01-04T21:54:54+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.052276s ] |
|||
[2022-01-04T21:54:54+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,209,210,211,26,192,205,198,206,207,208,200,201,202,203,204,3,11,189,212,216,217,218,219,220,213,214,215,221,222,223,224,225,226,227,228,229,230,232,231,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,253,254,255,256,257,258,4,14,199,190,191,197,248,249,250,251,252) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.056646s ] |
|||
[2022-01-04T21:54:54+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.053635s ] |
|||
[2022-01-04T21:54:54+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.328355s ] |
|||
[2022-01-04T21:54:54+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.052282s ] |
|||
[2022-01-04T21:54:54+08:00][sql] CONNECT:[ UseTime:0.167991s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2022-01-04T21:54:54+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.152565s ] |
|||
[2022-01-04T21:54:54+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.068480s ] |
|||
[2022-01-04T21:54:54+08:00][sql] SELECT * FROM `system_message` WHERE `receve_id` = 1 AND `type` = 1 ORDER BY `create_time` DESC LIMIT 1 [ RunTime:0.058157s ] |
|||
[2022-01-04T21:54:54+08:00][sql] SHOW FULL COLUMNS FROM `system_message_content` [ RunTime:0.059224s ] |
|||
[2022-01-04T21:54:54+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 7 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.062611s ] |
|||
[2022-01-04T21:54:54+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.066057s ] |
|||
[2022-01-04T21:54:54+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.065239s ] |
|||
[2022-01-04T21:54:54+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.059045s ] |
|||
[2022-01-04T21:54:54+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.059761s ] |
|||
[2022-01-04T21:54:54+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,209,210,211,26,192,205,198,206,207,208,200,201,202,203,204,3,11,189,212,216,217,218,219,220,213,214,215,221,222,223,224,225,226,227,228,229,230,232,231,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,253,254,255,256,257,258,4,14,199,190,191,197,248,249,250,251,252) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.069617s ] |
|||
[2022-01-04T21:54:54+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.059068s ] |
|||
[2022-01-04T21:54:54+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.353787s ] |
|||
[2022-01-04T21:54:54+08:00][sql] SELECT * FROM `system_message` WHERE ( `site_id` = 1 AND `type` = 1 AND `create_time` > 1620379101 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` ASC [ RunTime:0.081700s ] |
|||
[2022-01-04T21:55:57+08:00][sql] CONNECT:[ UseTime:0.076045s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2022-01-04T21:55:57+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.053150s ] |
|||
[2022-01-04T21:55:57+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.052615s ] |
|||
[2022-01-04T21:55:57+08:00][sql] SELECT * FROM `system_message` WHERE `receve_id` = 1 AND `type` = 1 ORDER BY `create_time` DESC LIMIT 1 [ RunTime:0.052043s ] |
|||
[2022-01-04T21:55:57+08:00][sql] SHOW FULL COLUMNS FROM `system_message_content` [ RunTime:0.052015s ] |
|||
[2022-01-04T21:55:57+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 7 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.051095s ] |
|||
[2022-01-04T21:55:57+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.051301s ] |
|||
[2022-01-04T21:55:57+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.051534s ] |
|||
[2022-01-04T21:55:57+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.049930s ] |
|||
[2022-01-04T21:55:57+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.051150s ] |
|||
[2022-01-04T21:55:57+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,209,210,211,26,192,205,198,206,207,208,200,201,202,203,204,3,11,189,212,216,217,218,219,220,213,214,215,221,222,223,224,225,226,227,228,229,230,232,231,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,253,254,255,256,257,258,4,14,199,190,191,197,248,249,250,251,252) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.055762s ] |
|||
[2022-01-04T21:55:57+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.051657s ] |
|||
[2022-01-04T21:55:57+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.051422s ] |
|||
[2022-01-04T21:55:57+08:00][sql] SELECT * FROM `system_message` WHERE ( `site_id` = 1 AND `type` = 1 AND `create_time` > 1620379101 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` ASC [ RunTime:0.049273s ] |
|||
[2022-01-04T21:55:58+08:00][sql] CONNECT:[ UseTime:0.080854s ] mysql:host=122.114.59.173;port=3306;dbname=bmz_base;charset=utf8mb4 |
|||
[2022-01-04T21:55:58+08:00][sql] SHOW FULL COLUMNS FROM `system_user` [ RunTime:0.056855s ] |
|||
[2022-01-04T21:55:58+08:00][sql] SHOW FULL COLUMNS FROM `system_message` [ RunTime:0.054555s ] |
|||
[2022-01-04T21:55:58+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.055087s ] |
|||
[2022-01-04T21:55:58+08:00][sql] SELECT COUNT(*) AS think_count FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL [ RunTime:0.054742s ] |
|||
[2022-01-04T21:55:58+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 1 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.055309s ] |
|||
[2022-01-04T21:55:58+08:00][sql] SHOW FULL COLUMNS FROM `system_message_content` [ RunTime:0.055762s ] |
|||
[2022-01-04T21:55:58+08:00][sql] SELECT * FROM `system_message_content` WHERE ( `id` = 7 ) AND `system_message_content`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.056364s ] |
|||
[2022-01-04T21:55:58+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.055166s ] |
|||
[2022-01-04T21:55:58+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_group_access` [ RunTime:0.053286s ] |
|||
[2022-01-04T21:55:58+08:00][sql] SELECT `system_auth_group_access`.`uid`,`system_auth_group_access`.`group_id`,`system_auth_group`.`id`,`system_auth_group`.`title`,`system_auth_group`.`role_code`,`system_auth_group`.`rules` FROM `system_auth_group_access` `system_auth_group_access` LEFT JOIN `system_auth_group` `system_auth_group` ON `system_auth_group_access`.`group_id`=`system_auth_group`.`id` WHERE ( system_auth_group_access.uid='1' and system_auth_group.status='1' ) [ RunTime:0.058949s ] |
|||
[2022-01-04T21:55:58+08:00][sql] SHOW FULL COLUMNS FROM `system_auth_rule` [ RunTime:0.060749s ] |
|||
[2022-01-04T21:55:58+08:00][sql] SELECT * FROM `system_auth_rule` WHERE `type` = 1 AND `status` = 1 AND `menu_type` = 0 AND `id` IN (1,2,5,6,7,8,9,10,12,185,186,187,188,13,21,22,23,24,25,196,15,16,17,18,19,20,184,194,195,209,210,211,26,192,205,198,206,207,208,200,201,202,203,204,3,11,189,212,216,217,218,219,220,213,214,215,221,222,223,224,225,226,227,228,229,230,232,231,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,253,254,255,256,257,258,4,14,199,190,191,197,248,249,250,251,252) AND `delete_time` IS NULL ORDER BY `sort` DESC,`create_time` DESC [ RunTime:0.058843s ] |
|||
[2022-01-04T21:55:58+08:00][sql] SELECT * FROM `system_user` WHERE `id` = 1 LIMIT 1 [ RunTime:0.059041s ] |
|||
[2022-01-04T21:55:58+08:00][sql] SELECT * FROM `system_user` WHERE ( `id` = 1 ) AND `system_user`.`delete_time` IS NULL LIMIT 1 [ RunTime:0.053321s ] |
|||
[2022-01-04T21:55:58+08:00][sql] SELECT * FROM `system_message` WHERE ( `receve_id` = 1 AND `type` = 0 AND `read_status` = 0 ) AND `system_message`.`delete_time` IS NULL ORDER BY `create_time` DESC,`id` DESC LIMIT 5 [ RunTime:0.056925s ] |
|||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1,4 +1,4 @@ |
|||
<?php |
|||
//000000001800 |
|||
exit();?> |
|||
32 |
|||
17 |
|||
@ -1,4 +1,4 @@ |
|||
<?php |
|||
//000000001800 |
|||
exit();?> |
|||
25 |
|||
19 |
|||
@ -1,4 +1,4 @@ |
|||
<?php |
|||
//000000001800 |
|||
exit();?> |
|||
23 |
|||
13 |
|||
@ -0,0 +1,4 @@ |
|||
<?php |
|||
//000000001800 |
|||
exit();?> |
|||
28 |
|||
@ -0,0 +1,4 @@ |
|||
<?php |
|||
//000000001800 |
|||
exit();?> |
|||
18 |
|||
@ -1 +0,0 @@ |
|||
[2021-03-18T15:46:34+08:00][error] [0]方法不存在:app\index\controller\Index->index()[/Users/wwwroot/ahbmz/api.base.ahbmz.com/vendor/topthink/framework/src/think/route/dispatch/Controller.php:107] |
|||
@ -0,0 +1 @@ |
|||
[2021-05-17T17:46:46+08:00][error] [0]控制器不存在:app\index\controller\Ad |
|||
@ -0,0 +1 @@ |
|||
[2021-05-17T17:46:19+08:00][error] [0]控制器不存在:app\controller\Ad |
|||
Loading…
Reference in new issue